diff --git a/texture.hh b/texture.hh new file mode 100644 index 0000000..abb5018 --- /dev/null +++ b/texture.hh @@ -0,0 +1,15 @@ +#ifndef TEXTURE_HH_INCLUDED +#define TEXTURE_HH_INCLUDED + +#include + +class Texture{ + public: + Texture(std::string filePath); + ~Texture(); + void load(); + private: + std::string filePath; +}; + +#endif