Files
vb01/modelReader.cpp
T
2021-10-19 19:06:41 +03:00

18 lines
258 B
C++

#include "modelReader.h"
#include "model.h"
#include <vector>
#include <fstream>
using namespace std;
namespace vb01{
ModelReader::ModelReader(Model *model, string path){
this->model = model;
this->path = path;
}
ModelReader::~ModelReader(){
}
}