/* * ===================================================================================== * * 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(); void draw(Shader &shader); private: VertexBuffer m_vbo; }; #endif // SKYBOX_HPP_