mirror of
https://github.com/devZoGok/vb01.git
synced 2026-08-26 19:43:30 +00:00
22 lines
404 B
C++
22 lines
404 B
C++
#ifndef ASSIMP_MODEL_READER_H
|
|
#define ASSIMP_MODEL_READER_H
|
|
|
|
#include"modelReader.h"
|
|
|
|
class aiNode;
|
|
class aiMesh;
|
|
class aiScene;
|
|
|
|
namespace vb01{
|
|
class AssimpModelReader : public ModelReader{
|
|
public:
|
|
AssimpModelReader(Model*, std::string);
|
|
private:
|
|
void processNode(aiNode*, const aiScene*, Node*);
|
|
void processMesh(aiMesh*, const aiScene*, Node*);
|
|
void processMaterial();
|
|
};
|
|
}
|
|
|
|
#endif
|