aboutsummaryrefslogtreecommitdiff
path: root/src/path_utils.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/path_utils.hpp')
-rw-r--r--src/path_utils.hpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/path_utils.hpp b/src/path_utils.hpp
new file mode 100644
index 0000000..e87aad6
--- /dev/null
+++ b/src/path_utils.hpp
@@ -0,0 +1,13 @@
+#ifndef PATH_UTILS_HPP
+#define PATH_UTILS_HPP
+
+#include <optional>
+#include <filesystem>
+
+namespace engine::path_utils {
+
+std::optional<std::filesystem::path> exe_path() noexcept;
+
+}
+
+#endif // PATH_UTILS_HPP