4jcraft/Common/UI/UIControl_Label.h
2026-03-08 22:43:59 +01:00

15 lines
313 B
C++

#pragma once
#include "UIControl_Base.h"
class UIControl_Label : public UIControl_Base
{
public:
UIControl_Label();
virtual bool setupControl(UIScene *scene, IggyValuePath *parent, const string &controlName);
void init(const std::wstring &label);
void init(const string &label);
virtual void ReInit();
};