Stop() public method

public Stop ( ) : void
return void
コード例 #1
0
 /// <summary>
 ///     Stop the bot from going any further
 /// </summary>
 public void Stop()
 {
     IsWorking = false;
     _stateMachine.Stop();
     _playerMonitor.Stop();
     //_chatMonitor.Stop();
     _fface.Follow.Reset();
 }
コード例 #2
0
 /// <summary>
 ///     Stop the bot from going any further
 /// </summary>
 public void Stop()
 {
     IsWorking = false;
     _stateMachine.Stop();
     _playerMonitor.Stop();
 }
コード例 #3
0
ファイル: GameEngine.cs プロジェクト: mbout4it/EasyFarm
 /// <summary>
 /// Stop the bot from going any further
 /// </summary>
 public void Stop()
 {
     IsWorking = false;
     _stateMachine.Stop();
 }