1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-20 17:23:53 +00:00

added a few comments

This commit is contained in:
Marc Zinnschlag 2015-12-10 13:33:44 +01:00
parent b0fb6d56f1
commit 8050eba83b
2 changed files with 2 additions and 0 deletions

View file

@ -19,6 +19,7 @@ namespace CSMPrefs
DoubleSetting (Category *parent, Settings::Manager *values,
const std::string& key, const std::string& label, double default_);
// defaults to [0, std::numeric_limits<double>::max()]
DoubleSetting& setRange (double min, double max);
DoubleSetting& setMin (double min);

View file

@ -19,6 +19,7 @@ namespace CSMPrefs
IntSetting (Category *parent, Settings::Manager *values,
const std::string& key, const std::string& label, int default_);
// defaults to [0, std::numeric_limits<int>::max()]
IntSetting& setRange (int min, int max);
IntSetting& setMin (int min);