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:
parent
b0fb6d56f1
commit
8050eba83b
2 changed files with 2 additions and 0 deletions
|
@ -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);
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue