예제 #1
0
  public final void startGame() throws Exception {
    // #if DEBUG
    Log.debug("startGame");
    // #endif

    state = STATE_SHOW_LEVEL_INFO;

    for (int idx = 0; idx < myGameObjects.size; idx++) {
      final GameObject gameObject = (GameObject) myGameObjects.objects[idx];
      gameObject.onStartGame();
    }
  }