bubolo
 All Classes Namespaces Functions Variables Enumerator
Public Member Functions | List of all members
bubolo.controllers.Controller Interface Reference
Inheritance diagram for bubolo.controllers.Controller:
bubolo.graphics.CameraController bubolo.graphics.TankCameraController

Public Member Functions

void update (World world)
 

Detailed Description

Controllers update (control) the model. In other words, entity behavior belongs in controllers, not within the entities. See the wiki page for more information.

Author
BU CS673 - Clone Productions

Definition at line 11 of file Controller.java.

Member Function Documentation

void bubolo.controllers.Controller.update ( World  world)

Allows the controller to perform its processing. Called once per game tick.

Parameters
worldreference to the World/Model object.

Implemented in bubolo.graphics.TankCameraController.