LeviLamina
Loading...
Searching...
No Matches
ItemsWithTagCommand.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 ItemsWithTagCommand : public ::Command {
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<8, 32, ::std::string> mTag;
19 // NOLINTEND
20
21public:
22 // virtual functions
23 // NOLINTBEGIN
24 virtual void execute(::CommandOrigin const&, ::CommandOutput&) const /*override*/;
25 // NOLINTEND
26
27public:
28 // virtual function thunks
29 // NOLINTBEGIN
30
31 // NOLINTEND
32};
Definition CommandOrigin.h:32
Definition CommandOutput.h:20
Definition ItemsWithTagCommand.h:14