mirror of
https://github.com/minetest/irrlicht.git
synced 2024-11-05 09:50:41 +01:00
25 lines
448 B
C++
25 lines
448 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();
|
|
|
|
bool isALoadableFileExtension(const io::path& fileName) const override;
|
|
|
|
IAnimatedMesh* createMesh(io::IReadFile* file) override;
|
|
|
|
};// class CB3DJSONMeshFileLoader
|
|
} // namespace scene
|
|
} // namespace irr
|