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