mirror of
https://github.com/devZoGok/vb01.git
synced 2026-08-26 19:43:30 +00:00
17 lines
253 B
C++
17 lines
253 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(){
|
|
}
|
|
}
|