mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-28 10:32:53 +00:00
19 lines
451 B
C++
19 lines
451 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include "UIControl_Base.h"
|
|
#include "Minecraft.Client/Linux/Iggy/include/iggy.h"
|
|
#include "Minecraft.Client/Common/Source Files/UI/UIScene.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();
|
|
}; |