#ifndef _Skybox_H__ #define _Skybox_H__ #include "../OrxonoxPrereqs.h" #include "core/BaseObject.h" class TiXmlElement; // Forward declaration namespace orxonox { class _OrxonoxExport Skybox : public BaseObject { public: Skybox(); virtual ~Skybox(); void loadParams(TiXmlElement* xmlElem); private: }; ExportClass(Skybox, Orxonox); } #endif /* _Skybox_H__ */