LeviLamina
Loading...
Searching...
No Matches
TextInputChange.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace OreUI {
6
7struct TextInputChange {
8public:
9 // member variables
10 // NOLINTBEGIN
11 ::ll::TypedStorage<8, 32, ::std::string> addedChars;
12 ::ll::TypedStorage<8, 32, ::std::string> removedChars;
13 ::ll::TypedStorage<8, 32, ::std::string> invalidChars;
14 ::ll::TypedStorage<8, 8, uint64> index;
15 // NOLINTEND
16
17public:
18 // member functions
19 // NOLINTBEGIN
20 MCAPI ~TextInputChange();
21 // NOLINTEND
22
23public:
24 // static variables
25 // NOLINTBEGIN
26 MCAPI static ::std::add_lvalue_reference_t<char const[]> NAME();
27 // NOLINTEND
28
29public:
30 // destructor thunk
31 // NOLINTBEGIN
32 MCFOLD void $dtor();
33 // NOLINTEND
34};
35
36} // namespace OreUI
Definition TextInputChange.h:7