source:
code/branches/FICN/src/orxonox/objects/Skybox.h
@
744
| Last change on this file since 744 was 733, checked in by rgrieder, 18 years ago | |
|---|---|
| File size: 497 bytes | |
| Line | |
|---|---|
| 1 | #ifndef _Skybox_H__ |
| 2 | #define _Skybox_H__ |
| 3 | |
| 4 | #include "../OrxonoxPrereqs.h" |
| 5 | |
| 6 | #include "orxonox/core/BaseObject.h" |
| 7 | |
| 8 | class TiXmlElement; // Forward declaration |
| 9 | |
| 10 | namespace orxonox |
| 11 | { |
| 12 | class _OrxonoxExport Skybox : public BaseObject |
| 13 | { |
| 14 | public: |
| 15 | Skybox(); |
| 16 | virtual ~Skybox(); |
| 17 | |
| 18 | |
| 19 | void loadParams(TiXmlElement* xmlElem); |
| 20 | |
| 21 | private: |
| 22 | |
| 23 | |
| 24 | }; |
| 25 | ExportClass(Skybox, Orxonox); |
| 26 | } |
| 27 | |
| 28 | #endif /* _Skybox_H__ */ |
Note: See TracBrowser
for help on using the repository browser.










