From 69e5b0073e2d2cd4623c8d3e20a8512d4ddc4810 Mon Sep 17 00:00:00 2001 From: Faerbit Date: Mon, 20 Oct 2014 19:09:03 +0200 Subject: [PATCH] Added model.hh --- model.hh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 model.hh 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