Updated the 'ClientInterpreter' interface.

Updated the 'ClientInterpreter' interface by adjusting the JavaDocs.
This commit is contained in:
Daniel Grigencha
2024-12-05 05:00:29 +01:00
parent 6576250113
commit 07a833afe7

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);