mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-10 11:35:19 -05:00
18 lines
563 B
C++
18 lines
563 B
C++
|
#pragma once
|
||
|
|
||
|
#include <string>
|
||
|
#include <vector>
|
||
|
|
||
|
enum class OptionCategory;
|
||
|
|
||
|
bool CreatePresetDirectories();
|
||
|
std::vector<std::string> GetSettingsPresets();
|
||
|
bool SavePreset(std::string_view presetName, OptionCategory category);
|
||
|
bool LoadPreset(std::string_view presetName, OptionCategory category);
|
||
|
bool DeletePreset(std::string_view presetName, OptionCategory category);
|
||
|
bool SaveSpecifiedPreset(std::string_view presetName, OptionCategory category);
|
||
|
void SaveCachedSettings();
|
||
|
void LoadCachedSettings();
|
||
|
bool SaveCachedCosmetics();
|
||
|
void LoadCachedCosmetics();
|