Some cleanups

This commit is contained in:
2021-01-13 19:03:47 +01:00
parent 89ae811beb
commit 0370a2e871
24 changed files with 321 additions and 237 deletions

View File

@@ -115,3 +115,13 @@ void Model::loadModel(std::string &pathToModel)
input.close();
}
Mesh* Model::getMesh(unsigned int index)
{
return meshes[index];
}
std::string Model::getUniqueName()
{
return unique_name;
}