Ejemplo n.º 1
0
        /// <summary>
        /// Start new game session or continue previous session
        /// </summary>
        public void StartNewGameOrContinue()
        {
            if (m_Session.IsActive)
            {
                // Continue Current Session
                m_Session.Level += 1;
            }
            else
            {
                // Start New Game
                m_Session = new ShooterSession(true, 1, 0, 3, 100, 0);
            }

            UpdateHUD();

            SessionManager.Instance.StartSession();
        }
Ejemplo n.º 2
0
 void Start()
 {
     m_LastSession = GameManager.Instance.GetCurrentSession();
     SetUI();
 }