mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-08-20 13:24:40 -04:00
14 lines
349 B
C++
14 lines
349 B
C++
#pragma once
|
|
|
|
#include <filesystem>
|
|
|
|
namespace randomizer::paths {
|
|
|
|
std::filesystem::path GetRandomizerPath();
|
|
std::filesystem::path GetRandomizerSettingsPath();
|
|
std::filesystem::path GetRandomizerPreferencesPath();
|
|
std::filesystem::path GetRandomizerPresetsPath();
|
|
std::filesystem::path GetRandomizerSeedsPath();
|
|
|
|
} // namespace randomizer::paths
|