Space von Team 22 (Nico B. Benjamin F. Lea A.)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
381 B

  1. /**
  2. * The package gameobjects contains all objects with a visual representation on screen.
  3. * They can be combined to use controller instances for their behavior (subclasses of {@link controller.ObjectController}).
  4. * The abstract base class is {@link GameObject}, which forces child-classes to implement the method
  5. * {@link GameObject#updateObject()}.
  6. */
  7. package gameobjects;