Last change
on this file since 861 was
790,
checked in by nicolasc, 17 years ago
|
merged FICN back into trunk
awaiting release.
|
File size:
727 bytes
|
Line | |
---|
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 "CorePrereqs.h" |
---|
12 | #include "util/tinyxml/TinyXMLPrereqs.h" |
---|
13 | |
---|
14 | #include "CoreIncludes.h" |
---|
15 | |
---|
16 | namespace orxonox |
---|
17 | { |
---|
18 | //! The BaseObject is the parent of all classes representing an instance in the game. |
---|
19 | class _CoreExport BaseObject : virtual public OrxonoxClass |
---|
20 | { |
---|
21 | public: |
---|
22 | BaseObject(); |
---|
23 | virtual ~BaseObject(); |
---|
24 | virtual void loadParams(TiXmlElement* xmlElem); |
---|
25 | }; |
---|
26 | ExportClass(BaseObject, Core); |
---|
27 | } |
---|
28 | |
---|
29 | #endif /* _BaseObject_H__ */ |
---|
Note: See
TracBrowser
for help on using the repository browser.