Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/orxonox/objects/Skybox.h @ 1045

Last change on this file since 1045 was 1039, checked in by rgrieder, 17 years ago
  • train riding doesn't have to be boring
  • added some license notes
  • removed certain header dependencies in audio
  • changed order of header file inclusion in orxonox and audio (coding style guide will be updated)
File size: 509 bytes
RevLine 
[673]1#ifndef _Skybox_H__
2#define _Skybox_H__
[507]3
[1039]4#include "OrxonoxPrereqs.h"
[708]5
[774]6#include "core/BaseObject.h"
[507]7
8namespace orxonox
9{
[729]10    class _OrxonoxExport Skybox : public BaseObject
[507]11    {
12        public:
13            Skybox();
14            virtual ~Skybox();
15
16            void loadParams(TiXmlElement* xmlElem);
[871]17            virtual void XMLPort(Element& xmlelement, bool loading);
18            void setSkybox(const std::string& skyboxname);
[507]19
20        private:
21
[871]22
[507]23    };
24}
25
[673]26#endif /* _Skybox_H__ */
Note: See TracBrowser for help on using the repository browser.