4jcraft/targets/app/common/UI/Controls/UIControl_Cursor.cpp
2026-04-07 09:41:29 +02:00

21 lines
604 B
C++

#include "UIControl_Cursor.h"
#include "app/common/UI/Controls/UIControl.h"
#include "app/common/UI/Controls/UIControl_Base.h"
#include "app/linux/Iggy/include/iggy.h"
#ifndef _ENABLEIGGY
#include "app/linux/Stubs/iggy_stubs.h"
#endif
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);
// scissors lesbian yuri
return success;
}