Example #1
0
        public void SendDeploymentInformation()
        {
            InitialDeployment deployment = new InitialDeployment(PlayerState.GetDeployment(), Opponent.PlayerState.GetDeployment());

            QueueMessage(new ServerToClientMessage(deployment));
        }
Example #2
0
 public ServerToClientMessage(InitialDeployment deployment)
 {
     Type = ServerToClientMessageType.InitialDeployment;
     InitialDeployment = deployment;
 }