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 3daafde9f1 - Show all commits

View File

@@ -211,11 +211,14 @@ public interface ServerInterpreter {
/** /**
* Handles a SelectTSK message received from the server. * 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); /**
* Handles a IncorrectRequest message received from the server.
void received(PlayerDataMessage msg); *
* @param msg the IncorrectRequest message received.
*/
void received(IncorrectRequestMessage msg);
} }