Base layout for the input manager

This commit is contained in:
2022-06-19 20:01:31 +02:00
parent 85f9c78adf
commit 3c30bf7fb7
17 changed files with 224 additions and 191 deletions

View File

@ -28,10 +28,10 @@ public:
~Renderable();
static Renderable* Load();
static Renderable* Load(std::string& path);
void Draw();
private:
std::vector<BarinkEngine::Mesh> meshes;
Renderable();
Renderable(std::string& path);
};