mirror of
https://github.com/2OOP/pism.git
synced 2026-02-04 10:54:51 +00:00
Is null, needs fix wip
This commit is contained in:
@@ -84,13 +84,17 @@ public class Events implements IEvents {
|
||||
|
||||
public record ForceCloseAllServers() {}
|
||||
|
||||
public record StartServer(String port) {}
|
||||
public record StartServer(String port, String gameType) {}
|
||||
|
||||
public record StartServerRequest(String port, CompletableFuture<String> future) {}
|
||||
public record StartServerRequest(String port, String gameType, CompletableFuture<String> future) {}
|
||||
|
||||
public record ServerStarted(String uuid, String port) {}
|
||||
|
||||
public record StartTicTacToeGame(String id, String port) {}
|
||||
public record CreateTicTacToeGame(String serverUuid, String playerA, String playerB, CompletableFuture<String> future) {}
|
||||
|
||||
public record RunTicTacToeGame(String serverUuid, String gameUuid) {}
|
||||
|
||||
public record EndTicTacToeGame(String serverUuid, String gameUuid) {}
|
||||
|
||||
/**
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user