LeviLamina
Loading...
Searching...
No Matches
DeferredCommand.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/server/commands/DeferredCommandBase.h"
7
8// auto generated forward declare list
9// clang-format off
10class CommandContext;
12struct MCRESULT;
13// clang-format on
14
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<8, 8, ::std::unique_ptr<::CommandContext>> mContext;
20 ::ll::TypedStorage<1, 1, bool> mSuppressOutput;
21 ::ll::TypedStorage<1, 1, bool> mIsRequest;
22 ::ll::TypedStorage<8, 64, ::std::function<void(::MCRESULT)>> mCallback;
23 // NOLINTEND
24
25public:
26 // virtual functions
27 // NOLINTBEGIN
28 virtual ~DeferredCommand() /*override*/ = default;
29
30 virtual void execute(::MinecraftCommands& commands) /*override*/;
31 // NOLINTEND
32
33public:
34 // virtual function thunks
35 // NOLINTBEGIN
36 MCAPI void $execute(::MinecraftCommands& commands);
37
38
39 // NOLINTEND
40
41public:
42 // vftables
43 // NOLINTBEGIN
44 MCNAPI static void** $vftable();
45 // NOLINTEND
46};
Definition CommandContext.h:10
Definition DeferredCommandBase.h:10
Definition DeferredCommand.h:15
static MCAPI void ** $vftable()
Definition MinecraftCommands.h:36
Definition MCRESULT.h:8