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

8 lines
186 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;
2019-05-26 20:14:53 +02:00
public interface Loggable {
2018-07-06 15:30:00 +02:00
void log(PreparedStatement statement) throws SQLException;
}