LeviLamina
Loading...
Searching...
No Matches
CloneCommand.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 CloneCommand : public ::Command {
16public:
17 // CloneCommand inner types define
18 enum class CloneMode : int {
19 Normal = 0,
20 Force = 1,
21 Move = 2,
22 };
23
24 enum class MaskMode : int {
25 Replace = 0,
26 Filtered = 1,
27 Masked = 2,
28 };
29
30public:
31 // member variables
32 // NOLINTBEGIN
41 // NOLINTEND
42
43public:
44 // prevent constructor by default
45 CloneCommand& operator=(CloneCommand const&);
46 CloneCommand(CloneCommand const&);
47 CloneCommand();
48
49public:
50 // virtual functions
51 // NOLINTBEGIN
52 virtual void execute(::CommandOrigin const& origin, ::CommandOutput& output) const /*override*/;
53
54 virtual ~CloneCommand() /*override*/ = default;
55 // NOLINTEND
56
57public:
58 // static functions
59 // NOLINTBEGIN
60 MCAPI static void setup(::CommandRegistry& registry);
61 // NOLINTEND
62
63public:
64 // virtual function thunks
65 // NOLINTBEGIN
66 MCAPI void $execute(::CommandOrigin const& origin, ::CommandOutput& output) const;
67
68
69 // NOLINTEND
70
71public:
72 // vftables
73 // NOLINTBEGIN
74 MCNAPI static void** $vftable();
75 // NOLINTEND
76};
static MCAPI void ** $vftable()
Definition CommandOrigin.h:32
Definition CommandOutput.h:19
Definition CommandRegistry.h:47
Definition Command.h:17
Definition Alias.h:14