diff options
Diffstat (limited to 'Minecraft.Client/Common/UI/UIControl_Button.h')
| -rw-r--r-- | Minecraft.Client/Common/UI/UIControl_Button.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Minecraft.Client/Common/UI/UIControl_Button.h b/Minecraft.Client/Common/UI/UIControl_Button.h new file mode 100644 index 00000000..367a48d7 --- /dev/null +++ b/Minecraft.Client/Common/UI/UIControl_Button.h @@ -0,0 +1,19 @@ +#pragma once + +#include "UIControl_Base.h" + +class UIControl_Button : public UIControl_Base +{ +private: + IggyName m_funcEnableButton; + +public: + UIControl_Button(); + + virtual bool setupControl(UIScene *scene, IggyValuePath *parent, const string &controlName); + + void init(const wstring &label, int id); + virtual void ReInit(); + + void setEnable(bool enable); +};
\ No newline at end of file |
