Arcturus-Community/src/main/java/com/eu/habbo/core/DatabaseLoggable.java

13 lines
221 B
Java
Raw Normal View History

2018-07-06 15:30:00 +02:00
package com.eu.habbo.core;
import java.sql.PreparedStatement;
import java.sql.SQLException;
2020-05-03 01:46:07 +02:00
public interface DatabaseLoggable {
String getQuery();
2018-07-06 15:30:00 +02:00
void log(PreparedStatement statement) throws SQLException;
2020-05-03 01:46:07 +02:00
}