LeviLamina
Loading...
Searching...
No Matches
EquipCommand.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;
12// clang-format on
13
14class EquipCommand : public ::Command {
15public:
16 // member variables
17 // NOLINTBEGIN
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 EquipCommand& operator=(EquipCommand const&);
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 // vIndex: 2
32 virtual void execute(::CommandOrigin const&, ::CommandOutput&) const /*override*/;
33
34 // vIndex: 0
35 virtual ~EquipCommand() /*override*/ = default;
36 // NOLINTEND
37
38public:
39 // destructor thunk
40 // NOLINTBEGIN
41
42 // NOLINTEND
43
44public:
45 // virtual function thunks
46 // NOLINTBEGIN
47
48 // NOLINTEND
49};
Definition CommandOrigin.h:32
Definition CommandOutput.h:19
Definition Command.h:17
Definition EquipCommand.h:14
Definition Alias.h:14