mirror of
https://github.com/devZoGok/vb01.git
synced 2026-08-26 19:43:30 +00:00
21 lines
278 B
C++
21 lines
278 B
C++
#ifndef MODEL_READER
|
|
#define MODEL_READER
|
|
|
|
#include <string>
|
|
#include "model.h"
|
|
|
|
namespace vb01{
|
|
class ModelReader{
|
|
public:
|
|
protected:
|
|
ModelReader(){}
|
|
ModelReader(Model*, std::string);
|
|
~ModelReader();
|
|
Model *model = nullptr;
|
|
std::string path;
|
|
};
|
|
}
|
|
|
|
#endif
|
|
|