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