00001 00007 #ifndef _OPENGL_BOX_H_ 00008 #define _OPENGL_BOX_H_ 00009 00010 #include "../OpenGL/OpenGLObject.h" 00011 #include "../../Util/Log.h" 00012 00013 class Box : public OpenGLObject { 00014 public: 00015 Box(float size); 00016 virtual ~Box(); 00017 00018 private: 00019 Vertex *m_pBoxVertices; 00020 }; 00021 00022 #endif