irrlicht/source/Irrlicht/CB3DJSONMeshFileLoader.cpp
jordan4ibanez a20637b3f4 Fixes
2023-11-26 02:03:32 -05:00

29 lines
486 B
C++

#include "IAnimatedMesh.h"
#include "IMeshLoader.h"
#include "IReadFile.h"
#include "path.h"
#include "json.hpp"
namespace irr
{
namespace scene
{
class CB3DJSONMeshFileLoader : public IMeshLoader
{
public:
CB3DJSONMeshFileLoader::CB3DJSONMeshFileLoader()
{
}
bool CB3DJSONMeshFileLoader::isALoadableFileExtension(
const io::path& fileName) const
{
return core::hasFileExtension(fileName, "b3djson");
}
};// class CB3DJSONMeshFileLoader
} // namespace scene
} // namespace irr