LeviLamina
Loading...
Searching...
No Matches
ValueParams.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace ScriptModuleMinecraft {
6
7struct ValueParams {
8public:
9 // member variables
10 // NOLINTBEGIN
11 ::ll::TypedStorage<1, 1, bool> isNumber;
12 ::ll::TypedStorage<1, 1, bool> isFloat;
13 ::ll::TypedStorage<4, 4, float> floatVal;
14 ::ll::TypedStorage<4, 4, int> intVal;
15 ::ll::TypedStorage<1, 1, bool> isBool;
16 ::ll::TypedStorage<1, 1, bool> boolVal;
17 ::ll::TypedStorage<8, 32, ::std::string> stringVal;
18 // NOLINTEND
19
20public:
21 // member functions
22 // NOLINTBEGIN
23 MCAPI ~ValueParams();
24 // NOLINTEND
25
26public:
27 // destructor thunk
28 // NOLINTBEGIN
29 MCFOLD void $dtor();
30 // NOLINTEND
31};
32
33} // namespace ScriptModuleMinecraft
Definition ValueParams.h:7