1
0
This commit is contained in:
jordan4ibanez
2023-11-26 02:03:32 -05:00
parent 8a0b6ee447
commit a20637b3f4
2 changed files with 32 additions and 4 deletions

View File

@@ -14,11 +14,15 @@ class CB3DJSONMeshFileLoader : public IMeshLoader
{
public:
CB3DJSONMeshFileLoader();
CB3DJSONMeshFileLoader::CB3DJSONMeshFileLoader()
{
}
bool isALoadableFileExtension(const io::path& fileName) const override;
IAnimatedMesh* createMesh(io::IReadFile* file) override;
bool CB3DJSONMeshFileLoader::isALoadableFileExtension(
const io::path& fileName) const
{
return core::hasFileExtension(fileName, "b3djson");
}
};// class CB3DJSONMeshFileLoader
} // namespace scene