Exemplo n.º 1
0
 public void SinglePlayerOption()
 {
     speaker.GenerateCommand();
     AppViewModel.CurrentGameIsMulti = false;
     AppModel.SwitchCurrentView(new SinglePlayerControl());
 }
Exemplo n.º 2
0
 public void SinglePlayerOption()
 {
     AppModel.SwitchCurrentView(new MainMenuControl());
 }
Exemplo n.º 3
0
 public void MultiplayerReady(object source, EventArgs e)
 {
     AppViewModel.CurrentGameIsMulti = true;
     AppModel.SwitchCurrentView(new MultiplayerControl());
 }