12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- #ifndef DEF_CABANE
- #define DEF_CABANE
- // Includes OpenGL
- #ifdef WIN32
- #include <glew.h>
- #else
- #define GL3_PROTOTYPES 1
- #include <GL3/gl3.h>
- #endif
- // Includes GLM
- #include <glm.hpp>
- #include <gtx/transform.hpp>
- #include <gtc/type_ptr.hpp>
- // Autres includes
- #include "Shader.h"
- #include "Texture.h"
- // Classe Cabane
- class Cabane
- {
- public:
- Cabane(std::string const vertexShader, std::string const fragmentShader);
- ~Cabane();
- void afficher(glm::mat4 &projection, glm::mat4 &modelview);
- private:
- Shader m_shader;
- Texture m_textureMur;
- Texture m_textureToit;
- float m_vertices[99];
- float m_coordTexture[66];
- };
- #endif
|