mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-25 16:13:36 +00:00
16 lines
471 B
C++
16 lines
471 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;
|
|
}
|