4jcraft/targets/app/common/UI/Controls/UIControl_Touch.h
2026-04-10 00:22:58 -05:00

24 lines
583 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_Touch.h"
#include "app/common/UI/UIScene.h"
#ifndef _ENABLEIGGY
#include "app/common/Iggy/iggy_stubs.h"
#endif
#include "UIControl_Base.h"
class UIControl_Touch : public UIControl_Base {
private:
public:
UIControl_Touch();
virtual bool setupControl(UIScene* scene, IggyValuePath* parent,
const std::string& controlName);
void init(int id);
virtual void ReInit();
};