Cabane.h 674 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. #ifndef DEF_CABANE
  2. #define DEF_CABANE
  3. // Includes OpenGL
  4. #ifdef WIN32
  5. #include <glew.h>
  6. #else
  7. #define GL3_PROTOTYPES 1
  8. #include <GL3/gl3.h>
  9. #endif
  10. // Includes GLM
  11. #include <glm.hpp>
  12. #include <gtx/transform.hpp>
  13. #include <gtc/type_ptr.hpp>
  14. // Autres includes
  15. #include "Shader.h"
  16. #include "Texture.h"
  17. // Classe Cabane
  18. class Cabane
  19. {
  20. public:
  21. Cabane(std::string const vertexShader, std::string const fragmentShader);
  22. ~Cabane();
  23. void afficher(glm::mat4 &projection, glm::mat4 &modelview);
  24. private:
  25. Shader m_shader;
  26. Texture m_textureMur;
  27. Texture m_textureToit;
  28. float m_vertices[99];
  29. float m_coordTexture[66];
  30. };
  31. #endif