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 : int {
19 Replace = 0,
20 Destroy = 1,
21 Hollow = 2,
22 Outline = 3,
23 Keep = 4,
24 };
25
26public:
27 // member variables
28 // NOLINTBEGIN
38 // NOLINTEND
39
40public:
41 // prevent constructor by default
42 FillCommand& operator=(FillCommand const&);
45
46public:
47 // virtual functions
48 // NOLINTBEGIN
49 // vIndex: 2
50 virtual void execute(::CommandOrigin const& origin, ::CommandOutput& output) const /*override*/;
51
52 // vIndex: 0
53 virtual ~FillCommand() /*override*/ = default;
54 // NOLINTEND
55
56public:
57 // static functions
58 // NOLINTBEGIN
59 MCAPI static void setup(::CommandRegistry& registry);
60 // NOLINTEND
61
62public:
63 // destructor thunk
64 // NOLINTBEGIN
65
66 // NOLINTEND
67
68public:
69 // virtual function thunks
70 // NOLINTBEGIN
71 MCAPI void $execute(::CommandOrigin const& origin, ::CommandOutput& output) const;
72 // NOLINTEND
73
74public:
75 // vftables
76 // NOLINTBEGIN
77 MCAPI static void** $vftable();
78 // NOLINTEND
79};
Definition CommandOrigin.h:32
Definition CommandOutput.h:19
Definition CommandRegistry.h:44
Definition Command.h:17
Definition FillCommand.h:15
Definition Alias.h:14