Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/FICN/src/orxonox/objects/SceneNode.h @ 566

Last change on this file since 566 was 515, checked in by nicolape, 16 years ago

Added some objects for the level loader

File size: 401 bytes
Line 
1#ifndef _OBJECT_SCENENODE_H__
2#define _OBJECT_SCENENODE_H__
3
4#include "BaseObject.h"
5#include "../../tinyxml/tinyxml.h"
6
7namespace orxonox
8{
9    class SceneNode : public BaseObject
10    {
11        public:
12            SceneNode();
13            virtual ~SceneNode();
14
15           
16            void loadParams(TiXmlElement* xmlElem);
17
18        private:
19           
20
21    };
22}
23
24#endif
Note: See TracBrowser for help on using the repository browser.