LeviLamina
Loading...
Searching...
No Matches
ScriptCustomCommandParamInterface.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/scripting/modules/minecraft/commands/ScriptCustomCommandParamType.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace Scripting { struct InterfaceBinding; }
11// clang-format on
12
13namespace ScriptModuleMinecraft {
14
15struct ScriptCustomCommandParamInterface {
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<8, 32, ::std::string> mName;
20 ::ll::TypedStorage<4, 4, ::ScriptModuleMinecraft::ScriptCustomCommandParamType> mParamType;
21 ::ll::TypedStorage<8, 40, ::std::optional<::std::string>> mEnumName;
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 ScriptCustomCommandParamInterface(ScriptCustomCommandParamInterface const&);
27 ScriptCustomCommandParamInterface();
28
29public:
30 // member functions
31 // NOLINTBEGIN
32 MCFOLD ::ScriptModuleMinecraft::ScriptCustomCommandParamInterface&
34
35 MCFOLD ::ScriptModuleMinecraft::ScriptCustomCommandParamInterface&
37 // NOLINTEND
38
39public:
40 // static functions
41 // NOLINTBEGIN
42 MCAPI static ::Scripting::InterfaceBinding bind();
43 // NOLINTEND
44};
45
46} // namespace ScriptModuleMinecraft
Definition ScriptCustomCommandParamInterface.h:15
Definition InterfaceBinding.h:16