diff options
Diffstat (limited to 'src/texture.hpp')
| -rw-r--r-- | src/texture.hpp | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/src/texture.hpp b/src/texture.hpp index 5309bd0..6ed89ae 100644 --- a/src/texture.hpp +++ b/src/texture.hpp @@ -3,9 +3,12 @@ // external libs #include "glad/glad.h" -class Texture +namespace Ogle { - public: - unsigned int id; - Texture(const char* texture_path); -}; + class Texture + { + public: + unsigned int id; + Texture(const char* texture_path); + }; +} |
