LeviLamina
Loading...
Searching...
No Matches
CommandClosureStorage.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/scripting/script_engine/ClosureGeneric.h"
7#include "mc/scripting/modules/minecraft/commands/ScriptCustomCommandInterface.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace ScriptModuleMinecraft { struct ScriptCustomCommandResult; }
12// clang-format on
13
14namespace ScriptModuleMinecraft {
15
16class CommandClosureStorage {
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<
21 8,
22 104,
24 mClosure;
25 ::ll::TypedStorage<8, 136, ::ScriptModuleMinecraft::ScriptCustomCommandInterface> mCommandInterface;
26 // NOLINTEND
27
28public:
29 // prevent constructor by default
30 CommandClosureStorage();
31
32public:
33 // member functions
34 // NOLINTBEGIN
35 MCAPI CommandClosureStorage(
36 ::Scripting::ClosureGeneric<::std::optional<::ScriptModuleMinecraft::ScriptCustomCommandResult>>&& closure,
38 );
39 // NOLINTEND
40
41public:
42 // constructor thunks
43 // NOLINTBEGIN
44 MCAPI void* $ctor(
45 ::Scripting::ClosureGeneric<::std::optional<::ScriptModuleMinecraft::ScriptCustomCommandResult>>&& closure,
47 );
48 // NOLINTEND
49};
50
51} // namespace ScriptModuleMinecraft
Definition ClosureGeneric.h:8
Definition ScriptCustomCommandInterface.h:16
Definition ScriptCustomCommandResult.h:15