コード例 #1
0
        internal void PlayCurrentGame()
        {
//            SoundController.GetController().StopMusic();
            // ViewController.GetController().StartGame(appModel.GetCurrentArea(), appModel.GetCurrentGame());
            SoundController.GetController().StopMusic();
            ViewController.GetController().StartGame(GetCurrentGame());
        }
コード例 #2
0
 internal void ShowInGameMenu()
 {
     ViewController.GetController().ShowInGameMenu();
 }
コード例 #3
0
 internal void ShowBook(int book)
 {
     SoundController.GetController().StopMusic();
     ViewController.GetController().ShowBook(books[book]);
 }
コード例 #4
0
ファイル: AppController.cs プロジェクト: macraig/oxread
 internal void PlayCurrentGame()
 {
     SoundController.GetController().StopMusic();
     ViewController.GetController().StartGame(appModel.GetCurrentGame());
 }
コード例 #5
0
 internal void PlayNextGame()
 {
     ViewController.GetController().StartGame(GetNextGame());
 }
コード例 #6
0
 internal void ShowInGameMenu()
 {
     Timer.GetTimer().Pause();
     ViewController.GetController().ShowInGameMenu();
 }