diff options
Diffstat (limited to 'src/game/QuickOption.h')
| -rw-r--r-- | src/game/QuickOption.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/game/QuickOption.h b/src/game/QuickOption.h index 8383029..4bf27ff 100644 --- a/src/game/QuickOption.h +++ b/src/game/QuickOption.h @@ -53,9 +53,9 @@ public: Type GetType() { return type; } - virtual bool GetToggle() {} - virtual int GetMutli() {} - virtual int GetMultiCount() {} + virtual bool GetToggle() { return true;} + virtual int GetMutli() { return 0;} + virtual int GetMultiCount() { return 0;} std::string GetIcon() { return icon; } void SetIcon(std::string icon) { this->icon = icon; } |
