Launcher/LauncherAPI/src/main/java/pro/gravit/launcher/request/WebSocketEvent.java

11 lines
248 B
Java
Raw Normal View History

package pro.gravit.launcher.request;
2018-10-05 12:20:40 +03:00
import pro.gravit.utils.TypeSerializeInterface;
/**
* The interface of all events sent by the server to the client
*/
public interface WebSocketEvent extends TypeSerializeInterface {
String getType();
2018-10-05 12:20:40 +03:00
}