Files
render/zassimp/include/zassimp/importer.h
T
2026-08-17 06:31:43 +09:00

16 lines
303 B
C++

#ifndef RENDER_IMPORTER_H
#define RENDER_IMPORTER_H
#include <render_type_def.h>
#include <filesystem>
class Importer {
public:
bool ImportFromFile(const std::filesystem::path &path, Z::Model **out) const;
void ReleaseLoadedModel(const Z::Model* model) const;
};
#endif //RENDER_IMPORTER_H