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
 /// <summary>
 /// Stop the bot from going any further
 /// </summary>
 public void Stop()
 {
     IsWorking = false;
     _stateMachine.Stop();
 }