mirror of
https://github.com/GabsPuNs/Project-Zenith-Main.git
synced 2026-05-25 12:14:34 +00:00
* Remove stdafx.h and some <unordered_set> includes * Update Minecraft Server Defines and remove more unused folders/files * Unbloat stdafx.h from Minecraft.World
17 lines
365 B
C++
17 lines
365 B
C++
#include "UI.h"
|
|
#include "UIControl_Cursor.h"
|
|
|
|
UIControl_Cursor::UIControl_Cursor()
|
|
{
|
|
}
|
|
|
|
bool UIControl_Cursor::setupControl(UIScene *scene, IggyValuePath *parent, const string &controlName)
|
|
{
|
|
UIControl::setControlType(UIControl::eCursor);
|
|
bool success = UIControl_Base::setupControl(scene,parent,controlName);
|
|
|
|
//Label specific initialisers
|
|
|
|
return success;
|
|
}
|