LeviLamina
Loading...
Searching...
No Matches
TextInput.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5class TextInput {
6public:
7 // member variables
8 // NOLINTBEGIN
9 ::ll::TypedStorage<8, 32, ::std::string> text;
10 ::ll::TypedStorage<4, 4, int> controllerId;
11 // NOLINTEND
12
13public:
14 // member functions
15 // NOLINTBEGIN
16#ifdef LL_PLAT_C
17 MCAPI ~TextInput();
18#endif
19 // NOLINTEND
20
21public:
22 // destructor thunk
23 // NOLINTBEGIN
24#ifdef LL_PLAT_C
25 MCFOLD void $dtor();
26#endif
27 // NOLINTEND
28};
Definition TextInput.h:5