mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-04-28 21:07:59 +03:00
Mass potion creation (feature #4642)
This commit is contained in:
parent
07be9ae8ac
commit
276b7830a9
8 changed files with 206 additions and 10 deletions
|
@ -59,6 +59,11 @@ namespace Gui
|
|||
}
|
||||
}
|
||||
|
||||
int NumericEditBox::getValue()
|
||||
{
|
||||
return mValue;
|
||||
}
|
||||
|
||||
void NumericEditBox::setMinValue(int minValue)
|
||||
{
|
||||
mMinValue = minValue;
|
||||
|
|
|
@ -30,6 +30,7 @@ namespace Gui
|
|||
|
||||
/// @note Does not trigger eventValueChanged
|
||||
void setValue (int value);
|
||||
int getValue();
|
||||
|
||||
void setMinValue(int minValue);
|
||||
void setMaxValue(int maxValue);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue