LeviLamina
Loading...
Searching...
No Matches
FunctionCommand.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/server/commands/Command.h"
7
8// auto generated forward declare list
9// clang-format off
10class CommandOrigin;
11class CommandOutput;
12class CommandRegistry;
13// clang-format on
14
15class FunctionCommand : public ::Command {
16public:
17 // member variables
18 // NOLINTBEGIN
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 FunctionCommand& operator=(FunctionCommand const&);
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 // vIndex: 2
32 virtual void execute(::CommandOrigin const& origin, ::CommandOutput& output) const /*override*/;
33
34 // vIndex: 0
35 virtual ~FunctionCommand() /*override*/ = default;
36 // NOLINTEND
37
38public:
39 // static functions
40 // NOLINTBEGIN
41 MCAPI static void setup(::CommandRegistry& registry);
42 // NOLINTEND
43
44public:
45 // destructor thunk
46 // NOLINTBEGIN
47
48 // NOLINTEND
49
50public:
51 // virtual function thunks
52 // NOLINTBEGIN
53 MCAPI void $execute(::CommandOrigin const& origin, ::CommandOutput& output) const;
54 // NOLINTEND
55
56public:
57 // vftables
58 // NOLINTBEGIN
59 MCAPI static void** $vftable();
60 // NOLINTEND
61};
Definition CommandOrigin.h:32
Definition CommandOutput.h:19
Definition CommandRegistry.h:44
Definition Command.h:17
Definition FunctionCommand.h:15
Definition Alias.h:14