コード例 #1
0
ファイル: Bot.cs プロジェクト: thejojo87/UltraBotFramework
 /// <summary>
 /// This ends the current state permanantly and changes to a new state.
 ///
 /// </summary>
 /// <param name="nextState"></param>
 public void changeState(BotAIState nextState)
 {
     previousState = currentState;
     currentState  = nextState;
 }
コード例 #2
0
ファイル: Bot.cs プロジェクト: Hatnice/UltraBotFramework
 /// <summary>
 /// This ends the current state permanantly and changes to a new state.
 /// 
 /// </summary>
 /// <param name="nextState"></param>
 public void changeState(BotAIState nextState)
 {
     previousState = currentState;
     currentState = nextState;
 }