Files
axyz/include/Engine/Rendering/Texture.h
T
2016-02-23 16:00:43 +01:00

26 lines
357 B
C++

#ifndef Texture_h__
#define Texture_h__
#include "../OpenGL.h"
#include "BaseTexture.h"
#include "PNG.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;
unsigned char* Data = nullptr;
};
#endif