Last change
on this file since 594 was
496,
checked in by landauf, 17 years ago
|
added files from objecthierarchy, changed includes
|
File size:
627 bytes
|
Rev | Line | |
---|
[496] | 1 | /*! |
---|
| 2 | @file BaseObject.h |
---|
| 3 | @brief Definition of the BaseObject class. |
---|
| 4 | |
---|
| 5 | The BaseObject is the parent of all classes representing an instance in the game. |
---|
| 6 | */ |
---|
| 7 | |
---|
| 8 | #ifndef _BaseObject_H__ |
---|
| 9 | #define _BaseObject_H__ |
---|
| 10 | |
---|
| 11 | #include "../core/CoreIncludes.h" |
---|
| 12 | #include "tinyxml/tinyxml.h" |
---|
| 13 | |
---|
| 14 | namespace orxonox |
---|
| 15 | { |
---|
| 16 | //! The BaseObject is the parent of all classes representing an instance in the game. |
---|
| 17 | class BaseObject : virtual public OrxonoxClass |
---|
| 18 | { |
---|
| 19 | public: |
---|
| 20 | BaseObject(); |
---|
| 21 | virtual ~BaseObject(); |
---|
| 22 | virtual void loadParams(TiXmlElement* xmlElem) {} |
---|
| 23 | }; |
---|
| 24 | } |
---|
| 25 | |
---|
| 26 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.