#ifndef _SKYBOX_H #define _SKYBOX_H #include "p_node.h" #include "world_entity.h" class Skybox: public PNode { private: GLUquadricObj *sphereObj; float a,b,c; public: Skybox(); ~Skybox(); void updatePosition(float x,float y,float z); void draw(); }; #endif