LeviLamina
Loading...
Searching...
No Matches
TextInputResult.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace OreUI {
6
7struct TextInputResult {
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 ::ll::TypedStorage<8, 32, ::std::string> text;
16 // NOLINTEND
17
18public:
19 // member functions
20 // NOLINTBEGIN
21 MCAPI ~TextInputResult();
22 // NOLINTEND
23
24public:
25 // destructor thunk
26 // NOLINTBEGIN
27 MCFOLD void $dtor();
28 // NOLINTEND
29};
30
31} // namespace OreUI
Definition TextInputResult.h:7