mirror of
https://github.com/minetest/irrlicht.git
synced 2025-07-06 18:20:26 +02:00
Now we're gonna bring back those tricks better
This commit is contained in:
@ -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:
|
||||
|
||||
|
Reference in New Issue
Block a user