irrlicht/source/Irrlicht/CB3DJSONMeshFileLoader.cpp

27 lines
464 B
C++
Raw Normal View History

2023-11-26 07:43:26 +01:00
#include "IAnimatedMesh.h"
#include "IMeshLoader.h"
#include "IReadFile.h"
#include "path.h"
2023-11-26 07:48:13 +01:00
#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;
2023-11-26 07:51:12 +01:00
// Hello world
2023-11-26 07:48:13 +01:00
};// class CB3DJSONMeshFileLoader
} // namespace scene
} // namespace irr