From cfdbe0ad0521045b27a60dbb1c963ea6dfdcda5a Mon Sep 17 00:00:00 2001 From: sf17k Date: Sun, 29 May 2011 12:30:19 -0400 Subject: [PATCH] add include guard to Texture.h --- Source/Texture.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Source/Texture.h b/Source/Texture.h index 6922676..f50af0e 100644 --- a/Source/Texture.h +++ b/Source/Texture.h @@ -1,3 +1,6 @@ +#ifndef _TEXTURE_H_ +#define _TEXTURE_H_ + #include #include @@ -34,3 +37,4 @@ class Texture { static GLuint Load(const std::string& fileName, bool mipmap, bool hasalpha, GLubyte* array, int* skinsize); }; +#endif -- 2.39.2