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&);
25 EquipCommand(EquipCommand const&);
26 EquipCommand();
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 virtual void execute(::CommandOrigin const&, ::CommandOutput&) const /*override*/;
32
33 virtual ~EquipCommand() /*override*/ = default;
34 // NOLINTEND
35
36public:
37 // virtual function thunks
38 // NOLINTBEGIN
39
40 // NOLINTEND
41};
Definition CommandOrigin.h:32
Definition CommandOutput.h:19
Definition Command.h:17
Definition Alias.h:14