15 lines
299 B
C++
15 lines
299 B
C++
#ifndef INFERNO_UTIL_ASSETLOADER_H_
|
|
#define INFERNO_UTIL_ASSETLOADER_H_
|
|
|
|
#include "../common.hpp"
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
class Triangle;
|
|
class Material;
|
|
|
|
std::vector<Triangle*> LoadTrianglesBasic(std::string path, std::string basePath = "", Material* baseMaterial = nullptr);
|
|
|
|
#endif
|