LeviLamina
Loading...
Searching...
No Matches
FillCommand.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 FillCommand : public ::Command {
16public:
17 // FillCommand inner types define
18 enum class FillMode : uint {};
19
20public:
21 // member variables
22 // NOLINTBEGIN
32 // NOLINTEND
33
34public:
35 // prevent constructor by default
36 FillCommand& operator=(FillCommand const&);
39
40public:
41 // virtual functions
42 // NOLINTBEGIN
43 // vIndex: 2
44 virtual void execute(::CommandOrigin const& origin, ::CommandOutput& output) const /*override*/;
45
46 // vIndex: 0
47 virtual ~FillCommand() /*override*/ = default;
48 // NOLINTEND
49
50public:
51 // static functions
52 // NOLINTBEGIN
53 MCAPI static void setup(::CommandRegistry& registry);
54 // NOLINTEND
55
56public:
57 // virtual function thunks
58 // NOLINTBEGIN
59 MCAPI void $execute(::CommandOrigin const& origin, ::CommandOutput& output) const;
60 // NOLINTEND
61
62public:
63 // vftables
64 // NOLINTBEGIN
65 MCNAPI static void** $vftable();
66 // NOLINTEND
67};
Definition CommandOrigin.h:30
Definition CommandOutput.h:17
Definition CommandRegistry.h:34
Definition Command.h:17
Definition FillCommand.h:15
static MCAPI void ** $vftable()
Definition _HeaderOutputPredefine.h:273