/* * ===================================================================================== * * Filename: Skybox.hpp * * Description: * * Created: 25/12/2014 23:43:07 * * Author: Quentin Bazin, * * ===================================================================================== */ #ifndef SKYBOX_HPP_ #define SKYBOX_HPP_ #include "Shader.hpp" #include "VertexBuffer.hpp" class Skybox { public: Skybox(); ~Skybox(); void draw(Shader &shader); private: VertexBuffer m_vbo{GL_QUADS, 0, 4 * 6}; }; #endif // SKYBOX_HPP_