mirror of
https://github.com/BluTac10/Xbox-Neo.git
synced 2026-06-03 00:34:37 +00:00
Implement Book & Quill: - IUIScene_WritingBookMenu and UIScene_BookAndQuillMenu for UI - Edited UIControl_Label to add direct editing (quite hardcoded to my needs right now) - Reimplement scrapped custom payload packets for books and signing - Other misc changes TODO: - Coloured and scambled text - Book copying - Clean up code
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();
|
|
}; |