Added Model and related classes

This commit is contained in:
sippeangelo
2015-11-24 10:55:54 +01:00
parent 34e095b54b
commit 16eb70dd59
14 changed files with 958 additions and 1 deletions
+21
View File
@@ -0,0 +1,21 @@
#ifndef Texture_h__
#define Texture_h__
#include "Rendering/BaseTexture.h"
class Texture : public BaseTexture
{
friend class ResourceManager;
private:
Texture(std::string path);
public:
~Texture();
void Bind(GLenum textureUnit = GL_TEXTURE0);
GLuint m_Texture = 0;
};
#endif