Now we start building off the normal B3D loader

This commit is contained in:
jordan4ibanez
2023-11-28 04:46:25 -05:00
parent 7deaf11dea
commit 26d5d8f076
2 changed files with 8 additions and 2 deletions

View File

@ -1,5 +1,8 @@
#pragma once
#include "IAnimatedMesh.h"
#include "IMeshLoader.h"
#include "CSkinnedMesh.h"
#include "IReadFile.h"
#include "path.h"
@ -11,6 +14,9 @@ namespace scene
class CB3DJSONMeshFileLoader : public IMeshLoader
{
private:
CSkinnedMesh* AnimatedMesh;
public:
CB3DJSONMeshFileLoader();