コード例 #1
0
ファイル: Game.java プロジェクト: ritcat14/GotYourSix
 public synchronized void stop() { // Stops the Thread
   running = false;
   try {
     thread.join();
   } catch (InterruptedException e) {
     e.printStackTrace(); // Catches any errors if the Thread crashes
   }
 }