aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/Common/UI/UIControl_Button.h
blob: 367a48d7fa5e30b2d10f31bd9fec097a94e010f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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);
};