the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at master 25 lines 537 B view raw
1#pragma once 2 3#include "UIControl_Base.h" 4 5class UIControl_DynamicLabel : public UIControl_Label 6{ 7private: 8 IggyName m_funcAddText, m_funcTouchScroll, m_funcGetRealWidth, m_funcGetRealHeight; 9 10public: 11 UIControl_DynamicLabel(); 12 13 virtual bool setupControl(UIScene *scene, IggyValuePath *parent, const string &controlName); 14 15 virtual void addText(const wstring &text, bool bLastEntry); 16 17 virtual void ReInit(); 18 19 virtual void SetupTouch(); 20 21 virtual void TouchScroll(S32 iY, bool bActive); 22 23 S32 GetRealWidth(); 24 S32 GetRealHeight(); 25};