Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/FICN/src/orxonox/objects/Camera.h @ 673

Last change on this file since 673 was 673, checked in by rgrieder, 16 years ago
  • deleted obsolete classes: BaseEntity, Entity, Light and SceneNode (please complain if not agreed)
  • improved include guard naming consistency
File size: 390 bytes
Line 
1#ifndef _Camera_H__
2#define _Camera_H__
3
4#include "BaseObject.h"
5#include "../../tinyxml/tinyxml.h"
6
7namespace orxonox
8{
9    class Camera : public BaseObject
10    {
11        public:
12            Camera();
13            virtual ~Camera();
14
15           
16            void loadParams(TiXmlElement* xmlElem);
17
18        private:
19           
20
21    };
22}
23
24#endif /* _Camera_H__ */
Note: See TracBrowser for help on using the repository browser.