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&);
43 FillCommand(FillCommand const&);
44 FillCommand();
45
46public:
47 // virtual functions
48 // NOLINTBEGIN
49 virtual void execute(::CommandOrigin const& origin, ::CommandOutput& output) const /*override*/;
50
51 virtual ~FillCommand() /*override*/ = default;
52 // NOLINTEND
53
54public:
55 // static functions
56 // NOLINTBEGIN
57 MCAPI static void setup(::CommandRegistry& registry);
58 // NOLINTEND
59
60public:
61 // virtual function thunks
62 // NOLINTBEGIN
63 MCAPI void $execute(::CommandOrigin const& origin, ::CommandOutput& output) const;
64
65
66 // NOLINTEND
67
68public:
69 // vftables
70 // NOLINTBEGIN
71 MCNAPI static void** $vftable();
72 // NOLINTEND
73};
Definition CommandOrigin.h:32
Definition CommandOutput.h:19
Definition CommandRegistry.h:47
Definition Command.h:17
static MCAPI void ** $vftable()
Definition Alias.h:14