Model + Texture
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
#include <SOIL.h>
|
||||
#include "Renderer.h"
|
||||
|
||||
|
||||
class Texture
|
||||
{
|
||||
public:
|
||||
|
||||
Texture(const char* path);
|
||||
|
||||
~Texture();
|
||||
|
||||
GLuint texture;
|
||||
|
||||
void Load(const char* path);
|
||||
void Bind();
|
||||
};
|
||||
Reference in New Issue
Block a user