コード例 #1
0
        /// <summary>
        /// All players clicked Ready for the first time
        /// </summary>
        public static void onAllPlayersClickedReady()
        {
            Log.log("onAllPlayersClickedReady()");

            //if (!ScreenCapture.isDBDWindowFocused())    // Don't activate if active already
            //    ScreenCapture.activateGame();

            // Activate action
            if (Actions.actions.ContainsKey(StateManager.State.Lobby_AllPlayersReady))
            {
                Actions.actions[StateManager.State.Lobby_AllPlayersReady].activate();
            }

            Form1.stopStopwatch();
        }
コード例 #2
0
 public static void onIdlingInPreLobby()
 {
     Log.log("onIdlingInPreLobby");
     Form1.stopStopwatch();
 }