the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 17 lines 385 B view raw
1#include "stdafx.h" 2#include "UI.h" 3#include "UIControl_Cursor.h" 4 5UIControl_Cursor::UIControl_Cursor() 6{ 7} 8 9bool UIControl_Cursor::setupControl(UIScene *scene, IggyValuePath *parent, const string &controlName) 10{ 11 UIControl::setControlType(UIControl::eCursor); 12 bool success = UIControl_Base::setupControl(scene,parent,controlName); 13 14 //Label specific initialisers 15 16 return success; 17}