diff --git a/model.hh b/model.hh new file mode 100644 index 0000000..977989d --- /dev/null +++ b/model.hh @@ -0,0 +1,16 @@ +#ifndef MODEL_HH_INCLUDED +#define MODEL_HH_INCLUDED + +#include + +class Model { + public: + Model(std::string filePath); + ~Model(); + void load(); + void render(); + private: + std::string filePath; +}; + +#endif