Example #1
0
 public synchronized void stop() {
   Game.setRunning(false);
 }
Example #2
0
 public synchronized void start() {
   Game.setRunning(true);
   new Thread(this, "GAME").start();
 }