예제 #1
0
  public final void startLevel() throws Exception {
    state = STATE_PLAY_LEVEL;

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