Changeset 6412 for code/branches/pickup2/src/orxonox/graphics/Camera.h
- Timestamp:
- Dec 25, 2009, 1:18:03 PM (15 years ago)
- Location:
- code/branches/pickup2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/pickup2
- Property svn:mergeinfo changed
-
code/branches/pickup2/src/orxonox/graphics/Camera.h
r5781 r6412 34 34 #include "util/OgreForwardRefs.h" 35 35 #include "tools/interfaces/Tickable.h" 36 #include "tools/interfaces/TimeFactorListener.h" 36 37 #include "worldentities/StaticEntity.h" 37 38 38 39 namespace orxonox 39 40 { 40 class _OrxonoxExport Camera : public StaticEntity, public Tickable 41 class _OrxonoxExport Camera : public StaticEntity, public Tickable, public TimeFactorListener 41 42 { 42 43 friend class CameraManager; … … 51 52 void requestFocus(); 52 53 void releaseFocus(); 54 55 inline Ogre::Camera* getOgreCamera() 56 { return this->camera_; } 53 57 54 58 inline bool hasFocus() … … 69 73 bool bHasFocus_; 70 74 bool bDrag_; 75 bool lastDtLagged_; 71 76 }; 72 77 }
Note: See TracChangeset
for help on using the changeset viewer.