mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-17 19:10:24 +00:00
29 lines
772 B
C++
29 lines
772 B
C++
#ifndef OPENMW_COMPONENTS_SETTINGS_CATEGORIES_SAVES_H
|
|
#define OPENMW_COMPONENTS_SETTINGS_CATEGORIES_SAVES_H
|
|
|
|
#include "components/settings/sanitizerimpl.hpp"
|
|
#include "components/settings/settingvalue.hpp"
|
|
|
|
#include <osg/Math>
|
|
#include <osg/Vec2f>
|
|
#include <osg/Vec3f>
|
|
|
|
#include <cstdint>
|
|
#include <string>
|
|
#include <string_view>
|
|
|
|
namespace Settings
|
|
{
|
|
struct SavesCategory : WithIndex
|
|
{
|
|
using WithIndex::WithIndex;
|
|
|
|
SettingValue<std::string> mCharacter{ mIndex, "Saves", "character" };
|
|
SettingValue<bool> mAutosave{ mIndex, "Saves", "autosave" };
|
|
SettingValue<bool> mTimeplayed{ mIndex, "Saves", "timeplayed" };
|
|
SettingValue<int> mMaxQuicksaves{ mIndex, "Saves", "max quicksaves", makeMaxSanitizerInt(1) };
|
|
};
|
|
}
|
|
|
|
#endif
|