source:
code/trunk/src/orxonox/objects/Skybox.h
@
934
Last change on this file since 934 was 871, checked in by landauf, 17 years ago | |
---|---|
File size: 558 bytes |
Rev | Line | |
---|---|---|
[673] | 1 | #ifndef _Skybox_H__ |
2 | #define _Skybox_H__ | |
[507] | 3 | |
[708] | 4 | #include "../OrxonoxPrereqs.h" |
5 | ||
[774] | 6 | #include "core/BaseObject.h" |
[507] | 7 | |
[708] | 8 | class TiXmlElement; // Forward declaration |
9 | ||
[507] | 10 | namespace orxonox |
11 | { | |
[729] | 12 | class _OrxonoxExport Skybox : public BaseObject |
[507] | 13 | { |
14 | public: | |
15 | Skybox(); | |
16 | virtual ~Skybox(); | |
17 | ||
18 | void loadParams(TiXmlElement* xmlElem); | |
[871] | 19 | virtual void XMLPort(Element& xmlelement, bool loading); |
20 | void setSkybox(const std::string& skyboxname); | |
[507] | 21 | |
22 | private: | |
23 | ||
[871] | 24 | |
[507] | 25 | }; |
26 | } | |
27 | ||
[673] | 28 | #endif /* _Skybox_H__ */ |
Note: See TracBrowser
for help on using the repository browser.