mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-12-26 10:31:19 +03:00
19 lines
497 B
Java
19 lines
497 B
Java
package pro.gravit.launcher.events;
|
|
|
|
import pro.gravit.launcher.LauncherNetworkAPI;
|
|
import pro.gravit.launcher.request.WebSocketEvent;
|
|
|
|
import java.util.UUID;
|
|
|
|
/**
|
|
* The class of all request events sent by the server to the client
|
|
*/
|
|
public abstract class RequestEvent implements WebSocketEvent {
|
|
/**
|
|
* UUID sent in request
|
|
*/
|
|
@LauncherNetworkAPI
|
|
public UUID requestUUID;
|
|
|
|
public static final UUID eventUUID = UUID.fromString("fac0e2bd-9820-4449-b191-1d7c9bf781be");
|
|
}
|