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
|
|
|
|
*
|
2018-06-14 03:19:35 +02:00
|
|
|
* 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:
|
2018-06-20 01:07:18 +02:00
|
|
|
VertexBuffer m_vbo;
|
2014-12-26 00:39:10 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SKYBOX_HPP_
|