4jcraft/Minecraft.Client/Platform/Common/UI/UIControl_Button.h
2026-03-22 04:25:54 -05:00

19 lines
414 B
C++

#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 std::string& controlName);
void init(const std::wstring& label, int id);
virtual void ReInit();
void setEnable(bool enable);
};