00001 00002 00003 #ifndef SKY_H 00004 #define SKY_H 00005 00006 00007 #include "RenderableObject.h" 00008 00009 00010 namespace pge { 00011 00012 00013 class ISky : public IRenderableObject { 00014 00015 public: 00016 //************************************************************************ 00017 // 00018 // Destructor 00019 // 00020 //************************************************************************ 00022 virtual ~ISky(void) { 00023 } 00024 00025 00026 //************************************************************************ 00027 // 00028 // Functions 00029 // 00030 //************************************************************************ 00031 //virtual bool init(void) = 0; 00032 //virtual void render(void) = 0; 00033 //virtual void timer(unsigned int delay) = 0; 00034 }; 00035 }; 00036 00037 #endif