Exemplo n.º 1
0
        public void SendDeploymentInformation()
        {
            InitialDeployment deployment = new InitialDeployment(PlayerState.GetDeployment(), Opponent.PlayerState.GetDeployment());

            QueueMessage(new ServerToClientMessage(deployment));
        }
Exemplo n.º 2
0
 public ServerToClientMessage(InitialDeployment deployment)
 {
     Type = ServerToClientMessageType.InitialDeployment;
     InitialDeployment = deployment;
 }