aboutsummaryrefslogtreecommitdiff
path: root/src/obj_parser.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/obj_parser.hpp')
-rw-r--r--src/obj_parser.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/obj_parser.hpp b/src/obj_parser.hpp
index df3f9fe..d5ba6bb 100644
--- a/src/obj_parser.hpp
+++ b/src/obj_parser.hpp
@@ -2,10 +2,11 @@
#define OBJ_PARSER_HPP
#include "o3d/mesh.hpp"
+#include <filesystem>
namespace engine {
-o3d::Mesh parse_object(const std::string& obj_path);
+o3d::Mesh parse_object(const std::filesystem::path& obj_path);
}