Changeset 4414 in orxonox.OLD for orxonox/trunk/src/world_entities/camera.h
- Timestamp:
- May 31, 2005, 1:29:44 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/world_entities/camera.h
r4338 r4414 9 9 #include "p_node.h" 10 10 #include "vector.h" 11 #include "event_listener.h" 11 12 12 13 class World; 13 14 class CameraTarget; 15 class Event; 14 16 15 17 enum ViewMode{VIEW_NORMAL, VIEW_BEHIND, VIEW_FRONT, VIEW_LEFT, VIEW_RIGHT, VIEW_TOP}; … … 19 21 This class controls the viewpoint from which the World is rendered. 20 22 */ 21 class Camera : public PNode 23 class Camera : public PNode, public EventListener 22 24 { 23 25 private: … … 46 48 void tick(float dt); 47 49 void apply (void); 50 51 void process(const Event &event); 48 52 }; 49 53
Note: See TracChangeset
for help on using the changeset viewer.