mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-11 13:37:13 +00:00
20 lines
525 B
C++
20 lines
525 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include "app/common/UI/Controls/UIControl_Base.h"
|
|
#include "app/common/UI/Controls/UIControl_Cursor.h"
|
|
#include "app/common/UI/UIScene.h"
|
|
#include "app/linux/Iggy/include/iggy.h"
|
|
#ifndef _ENABLEIGGY
|
|
#include "app/linux/Stubs/iggy_stubs.h"
|
|
#endif
|
|
#include "UIControl_Base.h"
|
|
|
|
class UIControl_Cursor : public UIControl_Base {
|
|
public:
|
|
UIControl_Cursor();
|
|
|
|
virtual bool setupControl(UIScene* scene, IggyValuePath* parent,
|
|
const std::string& controlName);
|
|
}; |