Saxum/texture.hh

16 lines
237 B
C++
Raw Normal View History

2014-10-20 17:09:34 +00:00
#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