Added model.hh

This commit is contained in:
Faerbit 2014-10-20 19:09:03 +02:00
parent 1ad0a13ce0
commit 69e5b0073e

16
model.hh Normal file
View File

@ -0,0 +1,16 @@
#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