Added texture.hh

This commit is contained in:
Faerbit 2014-10-20 19:09:34 +02:00
parent 80db1456d6
commit ca0648b42a

15
texture.hh Normal file
View File

@ -0,0 +1,15 @@
#ifndef TEXTURE_HH_INCLUDED
#define TEXTURE_HH_INCLUDED
#include <string>
class Texture{
public:
Texture(std::string filePath);
~Texture();
void load();
private:
std::string filePath;
};
#endif