32 lines
578 B
C++
32 lines
578 B
C++
/*
|
|
* =====================================================================================
|
|
*
|
|
* Filename: Skybox.hpp
|
|
*
|
|
* Description:
|
|
*
|
|
* Created: 25/12/2014 23:43:07
|
|
*
|
|
* Author: Quentin Bazin, <quent42340@gmail.com>
|
|
*
|
|
* =====================================================================================
|
|
*/
|
|
#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;
|
|
};
|
|
|
|
#endif // SKYBOX_HPP_
|