#ifndef _SKYBOX_H #define _SKYBOX_H #include "p_node.h" #include "world_entity.h" class Skybox: public PNode { private: GLUquadricObj *sphereObj; public: Skybox(); ~Skybox(); void draw(WorldEntity* myplayer); }; #endif