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
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
27 DeferredCommand& operator=(DeferredCommand const&);
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34 // vIndex: 0
35 virtual ~DeferredCommand() /*override*/ = default;
36
37 // vIndex: 1
38 virtual void execute(::MinecraftCommands& commands) /*override*/;
39 // NOLINTEND
40
41public:
42 // member functions
43 // NOLINTBEGIN
44 MCAPI DeferredCommand(
45 ::std::unique_ptr<::CommandContext> context,
46 bool suppressOutput,
47 bool isRequest,
48 ::std::function<void(::MCRESULT)> callback
49 );
50 // NOLINTEND
51
52public:
53 // constructor thunks
54 // NOLINTBEGIN
55 MCAPI void* $ctor(
56 ::std::unique_ptr<::CommandContext> context,
57 bool suppressOutput,
58 bool isRequest,
59 ::std::function<void(::MCRESULT)> callback
60 );
61 // NOLINTEND
62
63public:
64 // destructor thunk
65 // NOLINTBEGIN
66
67 // NOLINTEND
68
69public:
70 // virtual function thunks
71 // NOLINTBEGIN
72 MCAPI void $execute(::MinecraftCommands& commands);
73 // NOLINTEND
74
75public:
76 // vftables
77 // NOLINTBEGIN
78 MCAPI static void** $vftable();
79 // NOLINTEND
80};
Definition CommandContext.h:10
Definition DeferredCommandBase.h:10
Definition DeferredCommand.h:15
Definition MinecraftCommands.h:33
Definition MCRESULT.h:8
Definition context.h:5
Definition Alias.h:14