mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-05-30 22:16:01 +00:00
15 lines
317 B
C++
15 lines
317 B
C++
#pragma once
|
|
|
|
#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();
|
|
}; |