mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-02-10 00:09:45 +03:00
10 lines
248 B
Java
10 lines
248 B
Java
package pro.gravit.launcher.request;
|
|
|
|
import pro.gravit.utils.TypeSerializeInterface;
|
|
|
|
/**
|
|
* The interface of all events sent by the server to the client
|
|
*/
|
|
public interface WebSocketEvent extends TypeSerializeInterface {
|
|
String getType();
|
|
}
|