engine/include/util/gltf_loader.h

11 lines
168 B
C
Raw Normal View History

2023-10-02 11:54:37 +00:00
#pragma once
#include <string>
#include "scene.h"
namespace engine::util {
engine::Entity LoadGLTF(Scene& scene, const std::string& path, bool isStatic = false);
}