mirror of
https://github.com/devZoGok/vb01.git
synced 2026-08-26 19:43:30 +00:00
22 lines
296 B
C++
22 lines
296 B
C++
#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
|
|
|