engine/include/gltf_loader.h
2024-06-04 23:31:22 +01:00

11 lines
182 B
C++

#pragma once
#include <string>
#include "scene.h"
namespace engine {
engine::Entity loadGLTF(Scene& scene, const std::string& path, bool isStatic = false);
} // namespace engine