PixelBullet  0.0.1
A C++ game engine
Loading...
Searching...
No Matches
platform_paths.h
1#pragma once
2
3#include <filesystem>
4
5namespace pixelbullet::platform
6{
7std::filesystem::path default_app_data_root();
8std::filesystem::path default_log_root();
9std::filesystem::path build_application_settings_root(const std::filesystem::path& binary_path, const std::filesystem::path& app_data_root);
10std::filesystem::path default_application_settings_root(const std::filesystem::path& binary_path);
11} // namespace pixelbullet::platform