コード例 #1
0
ファイル: Game.cs プロジェクト: kjwilcox/HunterPie
 public void StopScanning()
 {
     Debugger.Warn("Stopping Game scanner");
     UnhookEvents();
     FirstMonster.StopThread();
     SecondMonster.StopThread();
     ThirdMonster.StopThread();
     Player.StopScanning();
     ScanGameThreading.Abort();
     IsActive = false;
 }
コード例 #2
0
ファイル: Game.cs プロジェクト: xiaomo8023/HunterPie
 public void StopScanning()
 {
     Debugger.Warn(GStrings.GetLocalizationByXPath("/Console/String[@ID='MESSAGE_GAME_SCANNER_STOP']"));
     UnhookEvents();
     FirstMonster.StopThread();
     SecondMonster.StopThread();
     ThirdMonster.StopThread();
     Player.StopScanning();
     ScanGameThreading.Abort();
     IsActive = false;
 }