Files
SDBA/src/renderEngine/obj_loader.h
2021-05-21 15:09:07 +02:00

14 lines
300 B
C++

#pragma once
#include <string>
#include "../models/model.h"
namespace render_engine
{
/*
* @brief: This function retrieves an .obj file, loads it into the VBO and returns a RawModel
*
* @param file_name: The path to the .obj file
*/
models::RawModel LoadObjModel(std::string file_name);
}