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