2019-06-02 05:03:08 +03:00
|
|
|
package pro.gravit.launcher.events;
|
2019-04-19 23:23:54 +03:00
|
|
|
|
2019-09-05 14:51:48 +03:00
|
|
|
import pro.gravit.launcher.LauncherNetworkAPI;
|
2019-07-01 13:46:49 +03:00
|
|
|
import pro.gravit.launcher.request.WebSocketEvent;
|
2019-06-03 10:58:10 +03:00
|
|
|
|
2019-10-19 19:46:04 +03:00
|
|
|
import java.util.UUID;
|
|
|
|
|
2019-09-05 15:09:28 +03:00
|
|
|
/**
|
|
|
|
* The class of all request events sent by the server to the client
|
|
|
|
*/
|
2019-07-01 13:46:49 +03:00
|
|
|
public abstract class RequestEvent implements WebSocketEvent {
|
2020-04-05 10:27:04 +03:00
|
|
|
public static final UUID eventUUID = UUID.fromString("fac0e2bd-9820-4449-b191-1d7c9bf781be");
|
2019-09-05 15:09:28 +03:00
|
|
|
/**
|
|
|
|
* UUID sent in request
|
|
|
|
*/
|
2019-09-05 14:51:48 +03:00
|
|
|
@LauncherNetworkAPI
|
2019-04-19 23:23:54 +03:00
|
|
|
public UUID requestUUID;
|
|
|
|
}
|