Added description to NTtBFormatMsg

This commit is contained in:
Sebastian Lenzlinger 2022-03-25 14:48:18 +01:00
parent 3575c2010c
commit 5368679933

View File

@ -3,6 +3,15 @@ package ch.unibas.dmi.dbis.cs108.Multiplayer.Protocol;
import java.util.LinkedList;
import java.util.Queue;
/**
* This class defines what type the ClientMsgDecoder returns after decoding the message.
* This is done so the output can be split into a response to the client and action
* in the game logik.
* commands should map to methods(maybe classes)
* parameters map to method parameters
*
*/
public class NTtBFormatMsg {
private String msgToClient;