16 lines
360 B
C++
16 lines
360 B
C++
#pragma once
|
|
|
|
#include "UIControl_Base.h"
|
|
|
|
class UIControl_Book : public UIControl_Base
|
|
{
|
|
public:
|
|
UIControl_Book();
|
|
|
|
virtual bool setupControl(UIScene *scene, IggyValuePath *parent, const string &controlName);
|
|
|
|
void init(UIString label, int id);
|
|
//void init(const wstring &label, int id) { init(UIString::CONSTANT(label), id); }
|
|
|
|
virtual void ReInit();
|
|
}; |