Package de.unifreiburg.twodeedoo.model

Game model (actors)

See:
          Description

Interface Summary
IActor I simulate some well-defined part of the world.
ICompositeActor A composite actor contains actors and runs them.
 

Class Summary
BaseActor Default base class for IActor implementations
CompositeActor Simple Composite of IActors.
LinearMotionActor I move my IPuppet along a linear path.
 

Package de.unifreiburg.twodeedoo.model Description

Game model (actors)

This package deals with the world simulation model of the game. IActors simulate one part of the world, e.g. the position and speed of the player. They are also notified of keyboard events.

ICompositeActors group multiple related IActors so that they can be used as an IActivity.