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
17class CodeBuilderActorInfoCommand : public ::Command {
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 // NOLINTEND
36
37public:
38 // member functions
39 // NOLINTBEGIN
40#ifdef LL_PLAT_C
42#endif
43 // NOLINTEND
44
45public:
46 // static functions
47 // NOLINTBEGIN
48 MCAPI static void setup(::CommandRegistry& registry);
49 // NOLINTEND
50
51public:
52 // constructor thunks
53 // NOLINTBEGIN
54#ifdef LL_PLAT_C
55 MCAPI void* $ctor();
56#endif
57 // NOLINTEND
58
59public:
60 // virtual function thunks
61 // NOLINTBEGIN
62 MCAPI void $execute(::CommandOrigin const& origin, ::CommandOutput& output) const;
63
64
65 // NOLINTEND
66
67public:
68 // vftables
69 // NOLINTBEGIN
70 MCNAPI static void** $vftable();
71 // NOLINTEND
72};
73
74// clang-format off
75template <>
76MCAPI ::ll::type_id_ref Bedrock::typeid_storage_impl<class CommandRegistry, ::CodeBuilderActorInfoCommand::Action>();
77// clang-format on
Definition Actor.h:125
Definition CodeBuilderActorInfoCommand.h:17
static MCAPI void ** $vftable()
Definition CommandOrigin.h:32
Definition CommandOutput.h:20
Definition CommandRegistry.h:51
Definition Inventory.h:14