Пример #1
0
 /// <summary>
 /// The player indicates they wish to send a StrideAction to their character.
 /// </summary>
 public void Stride()
 {
     gameScreen.TransitionState(new MoveState(gameScreen));
 }
Пример #2
0
        /// <summary>
        /// Quit from the Move menu and return to the AwaitingInput menu.
        /// </summary>
        public void Cancel()
        {
            Debug.Log("Cancel() invoked.");

            gameScreen.TransitionState(new AwaitingInputState(gameScreen));
        }