Now we're gonna bring back those tricks better

This commit is contained in:
jordan4ibanez
2023-11-28 05:06:58 -05:00
parent a8f67ace8e
commit e4452620f0
3 changed files with 82 additions and 17 deletions

View File

@ -17,10 +17,18 @@ class CB3DJSONMeshFileLoader : public IMeshLoader
private:
// Fields.
CSkinnedMesh* AnimatedMesh;
/*
Quick note about JSON.
This is static memory, it's a static memory address so I do not think
that this needs to be freed.
So once this model goes out of scope, I'm pretty sure that this will
be pointing to the next model. Or maybe the last model loaded.
*/
json JSONDataContainer;
// Methods.
void cleanUp(std::string);
bool parseJSONFile();
bool parseJSONFile(io::IReadFile* file);
public: