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
jordan4ibanez bb1bb8f7df again
2023-11-26 01:51:12 -05:00

27 lines
464 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;
// Hello world
};// class CB3DJSONMeshFileLoader
} // namespace scene
} // namespace irr