From 6406dbb9df0c2ce467e23b5dfffa1abc40841c78 Mon Sep 17 00:00:00 2001 From: jordan4ibanez Date: Sun, 26 Nov 2023 01:48:13 -0500 Subject: [PATCH] Wow, there's still nothing, incredible --- source/Irrlicht/CB3DJSONMeshFileLoader.cpp | 23 +++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/source/Irrlicht/CB3DJSONMeshFileLoader.cpp b/source/Irrlicht/CB3DJSONMeshFileLoader.cpp index 8ff68cc0..c641c27a 100644 --- a/source/Irrlicht/CB3DJSONMeshFileLoader.cpp +++ b/source/Irrlicht/CB3DJSONMeshFileLoader.cpp @@ -2,4 +2,25 @@ #include "IMeshLoader.h" #include "IReadFile.h" #include "path.h" -#include "json.hpp" \ No newline at end of file +#include "json.hpp" + +namespace irr +{ + +namespace scene +{ + +class CB3DJSONMeshFileLoader : public IMeshLoader +{ +public: + + CB3DJSONMeshFileLoader(); + + bool isALoadableFileExtension(const io::path& fileName) const override; + + IAnimatedMesh* createMesh(io::IReadFile* file) override; + + +};// class CB3DJSONMeshFileLoader +} // namespace scene +} // namespace irr \ No newline at end of file