31 lines
565 B
C++
Raw Normal View History

2014-12-26 00:39:10 +01:00
/*
* =====================================================================================
*
* Filename: Skybox.hpp
*
2018-06-05 01:24:54 +02:00
* Description:
2014-12-26 00:39:10 +01:00
*
* Created: 25/12/2014 23:43:07
*
* Author: Quentin Bazin, <quent42340@gmail.com>
2014-12-26 00:39:10 +01:00
*
* =====================================================================================
*/
#ifndef SKYBOX_HPP_
#define SKYBOX_HPP_
#include "Shader.hpp"
#include "VertexBuffer.hpp"
class Skybox {
public:
Skybox();
2018-06-05 01:24:54 +02:00
2014-12-29 02:57:29 +01:00
void draw(Shader &shader);
2018-06-05 01:24:54 +02:00
2014-12-26 00:39:10 +01:00
private:
VertexBuffer m_vbo;
2014-12-26 00:39:10 +01:00
};
#endif // SKYBOX_HPP_