예제 #1
0
 /** Updates every {@link Collectible} in the level. */
 public void update() {
   for (CollectibleRenderer collectible : collectibles) {
     collectible.update(renderer.getBatch(), renderer.getViewBounds());
   }
 }