4jcraft/Minecraft.Client/Build/Common/UI/UIControl_Cursor.cpp
2026-03-05 03:29:23 -05:00

18 lines
419 B
C++

#include "../../../../Minecraft.World/Build/stdafx.h"
#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;
}