engine/include/gltf_loader.h

11 lines
182 B
C
Raw Permalink Normal View History

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