public GameMessage(int id, List <Player> list, Board boa, PlayerLocation coords) { playerID = id; playerList = list; board = boa; coordinates = coords; }
public MoveResponse(int pID, PlayerLocation loc) { playerID = pID; playerLocation = loc; }