Version 1.0 #40

Merged
j23f0779 merged 947 commits from development2 into main 2024-12-13 10:26:49 +01:00
Showing only changes of commit 07a833afe7 - Show all commits

View File

@@ -21,17 +21,17 @@ public interface ClientInterpreter {
void received(DeselectTSKMessage msg, int from); void received(DeselectTSKMessage msg, int from);
/** /**
* Processes a received ForceStartGame message. * Processes a received StartGame message.
* *
* @param msg the ForceStartGame message to be processed * @param msg the StartGame message to be processed
* @param from the connection ID from which the message was received * @param from the connection ID from which the message was received
*/ */
void received(StartGameMessage msg, int from); void received(StartGameMessage msg, int from);
/** /**
* Processes a received JoinServer message. * Processes a received JoinedLobby message.
* *
* @param msg the JoinServer message to be processed * @param msg the JoinedLobby message to be processed
* @param from the connection ID from which the message was received * @param from the connection ID from which the message was received
*/ */
void received(JoinedLobbyMessage msg, int from); void received(JoinedLobbyMessage msg, int from);