Updated 'ServerInterpreter' class.

Updated the 'ServerInterpreter' class by adding the 'received(IncorrectRequestMessage msg)' method to it.
This commit is contained in:
Daniel Grigencha
2024-12-02 18:50:42 +01:00
parent 09fda6b167
commit 3daafde9f1

View File

@@ -211,11 +211,14 @@ public interface ServerInterpreter {
/**
* Handles a SelectTSK message received from the server.
*
* @param shutdownMessage the SelectTSK message received.
* @param msg the SelectTSK message received.
*/
void received(ShutdownMessage shutdownMessage);
void received(ShutdownMessage msg);
void received(StartBriefingMessage msg);
void received(PlayerDataMessage msg);
/**
* Handles a IncorrectRequest message received from the server.
*
* @param msg the IncorrectRequest message received.
*/
void received(IncorrectRequestMessage msg);
}