Changeset 8578 for code/branches/presentation/src/orxonox/graphics
- Timestamp:
- May 25, 2011, 9:22:53 PM (13 years ago)
- Location:
- code/branches/presentation/src/orxonox/graphics
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/presentation/src/orxonox/graphics/Camera.cc
r8079 r8578 48 48 CreateFactory(Camera); 49 49 50 Camera::Camera(BaseObject* creator) : StaticEntity(creator)50 Camera::Camera(BaseObject* creator) : MovableEntity(creator) 51 51 { 52 52 RegisterObject(Camera); -
code/branches/presentation/src/orxonox/graphics/Camera.h
r8079 r8578 36 36 #include "tools/interfaces/Tickable.h" 37 37 #include "tools/interfaces/TimeFactorListener.h" 38 #include "worldentities/ StaticEntity.h"38 #include "worldentities/MovableEntity.h" 39 39 40 40 namespace orxonox 41 41 { 42 class _OrxonoxExport Camera : public StaticEntity, public Tickable, public TimeFactorListener, public WindowEventListener 42 43 class _OrxonoxExport Camera : public MovableEntity, public TimeFactorListener, public WindowEventListener 43 44 { 44 45 friend class CameraManager;
Note: See TracChangeset
for help on using the changeset viewer.