aboutsummaryrefslogtreecommitdiff
path: root/src/path_utils.hpp
blob: e87aad6ca2b469e815b35241afdd4a92209d9b87 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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