Last change
on this file since 732 was
731,
checked in by rgrieder, 18 years ago
|
- little fix for the time being
|
File size:
741 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 | |
---|
[708] | 11 | #include "../OrxonoxPrereqs.h" |
---|
[729] | 12 | #include "../core/CorePrereqs.h" |
---|
[496] | 13 | |
---|
[729] | 14 | #include "../core/CoreIncludes.h" |
---|
[708] | 15 | |
---|
[496] | 16 | namespace orxonox |
---|
| 17 | { |
---|
| 18 | //! The BaseObject is the parent of all classes representing an instance in the game. |
---|
[729] | 19 | class _OrxonoxExport BaseObject : virtual public OrxonoxClass |
---|
[496] | 20 | { |
---|
| 21 | public: |
---|
| 22 | BaseObject(); |
---|
| 23 | virtual ~BaseObject(); |
---|
[637] | 24 | virtual void loadParams(TiXmlElement* xmlElem); |
---|
[496] | 25 | }; |
---|
[731] | 26 | //ExportClass(BaseObject, Orxonox); |
---|
[496] | 27 | } |
---|
| 28 | |
---|
[673] | 29 | #endif /* _BaseObject_H__ */ |
---|
Note: See
TracBrowser
for help on using the repository browser.