Fixed no game found bug

This commit is contained in:
lieght
2025-09-16 20:09:17 +02:00
parent dcbdfc9185
commit 45159ec659
3 changed files with 19 additions and 16 deletions

View File

@@ -90,7 +90,7 @@ public class Events implements IEvents {
public record ServerStarted(String uuid, String port) {}
public record CreateTicTacToeGame(String serverUuid, String playerA, String playerB, CompletableFuture<String> future) {}
public record CreateTicTacToeGameRequest(String serverUuid, String playerA, String playerB, CompletableFuture<String> future) {}
public record RunTicTacToeGame(String serverUuid, String gameUuid) {}