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