LeviLamina
Loading...
Searching...
No Matches
CountBlockCommand.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 CountBlockCommand : public ::Command {
15public:
16 // member variables
17 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 CountBlockCommand& operator=(CountBlockCommand const&);
27 CountBlockCommand(CountBlockCommand const&);
28 CountBlockCommand();
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 virtual void execute(::CommandOrigin const&, ::CommandOutput&) const /*override*/;
34
35 virtual ~CountBlockCommand() /*override*/ = default;
36 // NOLINTEND
37
38public:
39 // virtual function thunks
40 // NOLINTBEGIN
41
42 // NOLINTEND
43};
Definition CommandOrigin.h:32
Definition CommandOutput.h:19
Definition Command.h:17
Definition Alias.h:14