示例#1
0
        public void onPlay(VZ_GameInfoUC view, VZ_AppInfo info)
        {
            showGameOpeningWin();
            VZ_AppProcessHelper.getSingleton().runApp(info);

            if (info.type.Equals("game") && !info.appExeName.Equals("DrumGame.exe"))
            {
                this.Activate();
            }
            view.setGameIsPlaying(true);
        }
示例#2
0
 public void onQuit(VZ_GameInfoUC view, VZ_AppInfo info)
 {
     VZ_AppProcessHelper.getSingleton().closeAllApp();
     view.setGameIsPlaying(false);
 }