예제 #1
0
  public void removeObject(GameObject object) {
    objects.remove(object);

    drawPickables();
  }
예제 #2
0
  public void addObject(GameObject object) {
    object.createObject(pos);
    objects.add(object);

    drawPickables();
  }