beginning of a model reader

This commit is contained in:
devZoGok
2021-10-19 19:06:41 +03:00
parent 4f4bc88956
commit 146b267a72
7 changed files with 347 additions and 237 deletions
+21
View File
@@ -0,0 +1,21 @@
#ifndef MODEL_READER
#define MODEL_READER
#include<string>
namespace vb01{
class ModelReader{
public:
ModelReader(std::string);
~ModelReader();
private:
void readSkeletons(int, int);
void readMeshes(int, int);
void readLights(int, int);
std::string path;
};
}
#endif