예제 #1
0
 public void run() {
   try {
     init();
     gameLoop();
   } finally {
     s.restoreScreen();
   }
 }
예제 #2
0
  public void run2() {
    try {
      init();
      gameLoop();

    } finally {
      s.restoreScreen();
      Look.main(null);
    }
  }
예제 #3
0
  // call init and gameloop
  public void run() {
    try {
      init();
      gameLoop();

    } finally {
      s.restoreScreen();
      PlayMenu.main(null);
    }
  }