Model + Texture

This commit is contained in:
ViktorLjung
2014-03-07 20:34:40 +01:00
parent 95a36794e3
commit 800b4a3045
22 changed files with 16705 additions and 60 deletions
+17
View File
@@ -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();
};