Saxum/model.hh

17 lines
251 B
C++
Raw Normal View History

2014-10-20 17:09:03 +00:00
#ifndef MODEL_HH_INCLUDED
#define MODEL_HH_INCLUDED
#include <string>
class Model {
public:
Model(std::string filePath);
~Model();
void load();
void render();
private:
std::string filePath;
};
#endif