mirror of
https://github.com/devZoGok/vb01.git
synced 2026-08-26 19:43:30 +00:00
beginning of a model reader
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user