Saxum/texture.hh
2014-10-20 19:09:34 +02:00

16 lines
237 B
C++

#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