mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-25 14:23:37 +00:00
18 lines
421 B
C++
18 lines
421 B
C++
#include "../../Minecraft.World/Platform/stdafx.h"
|
|
#include "UI.h"
|
|
#include "UIControl_Cursor.h"
|
|
|
|
UIControl_Cursor::UIControl_Cursor()
|
|
{
|
|
}
|
|
|
|
bool UIControl_Cursor::setupControl(UIScene *scene, IggyValuePath *parent, const std::string &controlName)
|
|
{
|
|
UIControl::setControlType(UIControl::eCursor);
|
|
bool success = UIControl_Base::setupControl(scene,parent,controlName);
|
|
|
|
//Label specific initialisers
|
|
|
|
return success;
|
|
}
|