LeviLamina
Loading...
Searching...
No Matches
CustomZoneControl.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/input/TouchControl.h"
7
8// auto generated forward declare list
9// clang-format off
10class InputEventQueue;
11class RectangleArea;
13// clang-format on
14
15class CustomZoneControl : public ::TouchControl {
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<4, 4, uint const> mZoneName;
20 ::ll::TypedStorage<8, 64, ::std::function<bool()>> mCondition;
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 CustomZoneControl();
26
27public:
28 // virtual functions
29 // NOLINTBEGIN
30 virtual void tick(::InputEventQueue& eventQueue, ::TouchPointResults& touchPointResults, int) /*override*/;
31 // NOLINTEND
32
33public:
34 // member functions
35 // NOLINTBEGIN
36 MCAPI CustomZoneControl(uint zoneName, ::std::function<::RectangleArea()> area, ::std::function<bool()> condition);
37 // NOLINTEND
38
39public:
40 // constructor thunks
41 // NOLINTBEGIN
42 MCAPI void* $ctor(uint zoneName, ::std::function<::RectangleArea()> area, ::std::function<bool()> condition);
43 // NOLINTEND
44
45public:
46 // virtual function thunks
47 // NOLINTBEGIN
48 MCAPI void $tick(::InputEventQueue& eventQueue, ::TouchPointResults& touchPointResults, int);
49 // NOLINTEND
50
51public:
52 // vftables
53 // NOLINTBEGIN
54 MCNAPI static void** $vftable();
55 // NOLINTEND
56};
Definition CustomZoneControl.h:5
static MCAPI void ** $vftable()
Definition InputEventQueue.h:5
Definition RectangleArea.h:5
Definition TouchControl.h:5
Definition TouchPointResults.h:5