#ifndef DEF_CUBE #define DEF_CUBE // Includes OpenGL #ifdef WIN32 #include #else #define GL3_PROTOTYPES 1 #include #endif // Includes GLM #include #include #include // Includes #include "Shader.h" // Classe Cube class Cube { public: Cube(float taille, std::string const vertexShader, std::string const fragmentShader); ~Cube(); void afficher(glm::mat4 &projection, glm::mat4 &modelview); protected: Shader m_shader; float m_vertices[108]; float m_couleurs[108]; }; #endif