Last change
on this file since 2258 was
902,
checked in by landauf, 17 years ago
|
using "XMLPort::Mode mode" instead of "bool loading" in all XMLPort functions
|
File size:
564 bytes
|
Line | |
---|
1 | #ifndef _Skybox_H__ |
---|
2 | #define _Skybox_H__ |
---|
3 | |
---|
4 | #include "../OrxonoxPrereqs.h" |
---|
5 | |
---|
6 | #include "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 | void loadParams(TiXmlElement* xmlElem); |
---|
19 | virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode); |
---|
20 | void setSkybox(const std::string& skyboxname); |
---|
21 | |
---|
22 | private: |
---|
23 | |
---|
24 | |
---|
25 | }; |
---|
26 | } |
---|
27 | |
---|
28 | #endif /* _Skybox_H__ */ |
---|
Note: See
TracBrowser
for help on using the repository browser.