LeviLamina
Loading...
Searching...
No Matches
CodeBuilderActorInfoCommand.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/server/commands/Command.h"
7#include "mc/server/commands/CommandSelector.h"
8
9// auto generated forward declare list
10// clang-format off
11class Actor;
12class CommandOrigin;
13class CommandOutput;
14class CommandRegistry;
15// clang-format on
16
18public:
19 // CodeBuilderActorInfoCommand inner types define
20 enum class Action : int {
21 Inventory = 0,
22 };
23
24public:
25 // member variables
26 // NOLINTBEGIN
27 ::ll::TypedStorage<4, 4, ::CodeBuilderActorInfoCommand::Action> mAction;
28 ::ll::TypedStorage<8, 200, ::CommandSelector<::Actor>> mTargets;
29 // NOLINTEND
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34 virtual void execute(::CommandOrigin const& origin, ::CommandOutput& output) const /*override*/;
35
36 virtual ~CodeBuilderActorInfoCommand() /*override*/ = default;
37 // NOLINTEND
38
39public:
40 // static functions
41 // NOLINTBEGIN
42 MCAPI static void setup(::CommandRegistry& registry);
43 // NOLINTEND
44
45public:
46 // virtual function thunks
47 // NOLINTBEGIN
48 MCAPI void $execute(::CommandOrigin const& origin, ::CommandOutput& output) const;
49
50
51 // NOLINTEND
52
53public:
54 // vftables
55 // NOLINTBEGIN
56 MCNAPI static void** $vftable();
57 // NOLINTEND
58};
Definition Actor.h:106
Definition CodeBuilderActorInfoCommand.h:17
static MCAPI void ** $vftable()
Definition CommandOrigin.h:32
Definition CommandOutput.h:20
Definition CommandRegistry.h:50
Definition Command.h:17
Definition Inventory.h:13