blob: aa0f3f14c48cf3a9ff557d958bb780debbc1f152 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#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 wstring &label);
void init(const string &label);
virtual void ReInit();
};
|