1
0
This repository has been archived on 2025-10-04. You can view files and clone it, but cannot push or open issues or pull requests.
Files
irrlicht-archive/source/Irrlicht/CB3DJSONMeshFileLoader.cpp
2023-11-26 02:39:42 -05:00

29 lines
491 B
C++

#include "IAnimatedMesh.h"
#include "IMeshLoader.h"
#include "IReadFile.h"
#include "path.h"
#include "json/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