예제 #1
0
파일: GameMenu.java 프로젝트: Slyvr/DND
  public void render(SpriteBatch batch) {
    for (Ent e : this.getEnts()) {
      e.render(batch);
    }

    if (this.getCurrentSubMenu() != null) {
      this.getCurrentSubMenu().render(batch);
    }
  }