14 lines
248 B
C++
14 lines
248 B
C++
|
#pragma once
|
||
|
|
||
|
#include <vector>
|
||
|
#include <string>
|
||
|
|
||
|
#include "types.hpp"
|
||
|
|
||
|
//stub class for assimp
|
||
|
//TODO: this should really be merged with modelimporter.hpp
|
||
|
class AssimpImporter
|
||
|
{
|
||
|
public:
|
||
|
static ImportedModel Import(const std::string& path);
|
||
|
};
|