mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-06-08 16:22:55 +00:00
20 lines
526 B
C++
20 lines
526 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include "app/common/Iggy/include/iggy.h"
|
|
#include "app/common/UI/Controls/UIControl_Base.h"
|
|
#include "app/common/UI/Controls/UIControl_Cursor.h"
|
|
#include "app/common/UI/UIScene.h"
|
|
#ifndef _ENABLEIGGY
|
|
#include "app/common/Iggy/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);
|
|
}; |