Viktor stuff fixed

This commit is contained in:
2014-03-07 21:25:41 +01:00
parent 2e3afc7c7f
commit 00c893b0dc
3 changed files with 21 additions and 8 deletions
+11 -3
View File
@@ -1,11 +1,17 @@
#include <SOIL.h>
#include "Renderer.h"
#ifndef Texture_h__
#define Texture_h__
#include <GL/glew.h>
#define GLFW_INCLUDE_GLU
#include <GLFW/glfw3.h>
#include <glext.h>
#include <SOIL.h>
//#include "Renderer.h"
class Texture
{
public:
Texture(const char* path);
~Texture();
@@ -15,3 +21,5 @@ public:
void Load(const char* path);
void Bind();
};
#endif // Texture_h__