LeviLamina
Loading...
Searching...
No Matches
MobEventCommand.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;
12class CommandRegistry;
13// clang-format on
14
15class MobEventCommand : public ::Command {
16public:
17 // MobEventCommand inner types declare
18 // clang-format off
19 struct InitProxy;
20 // clang-format on
21
22 // MobEventCommand inner types define
23 struct InitProxy {
24 public:
25 // member variables
26 // NOLINTBEGIN
28 // NOLINTEND
29
30 public:
31 // prevent constructor by default
32 InitProxy& operator=(InitProxy const&);
33 InitProxy(InitProxy const&);
34 InitProxy();
35 };
36
37public:
38 // member variables
39 // NOLINTBEGIN
40 ::ll::TypedStorage<8, 32, ::std::string> mMobEventName;
41 ::ll::TypedStorage<1, 1, bool> mValue;
42 ::ll::TypedStorage<1, 1, bool> mValueWasSet;
43 // NOLINTEND
44
45public:
46 // virtual functions
47 // NOLINTBEGIN
48 // vIndex: 2
49 virtual void execute(::CommandOrigin const& origin, ::CommandOutput& output) const /*override*/;
50
51 // vIndex: 0
52 virtual ~MobEventCommand() /*override*/ = default;
53 // NOLINTEND
54
55public:
56 // static functions
57 // NOLINTBEGIN
58 MCAPI static void setup(::CommandRegistry& registry, ::MobEventCommand::InitProxy&& dependencies);
59 // NOLINTEND
60
61public:
62 // destructor thunk
63 // NOLINTBEGIN
64
65 // NOLINTEND
66
67public:
68 // virtual function thunks
69 // NOLINTBEGIN
70 MCAPI void $execute(::CommandOrigin const& origin, ::CommandOutput& output) const;
71 // NOLINTEND
72
73public:
74 // vftables
75 // NOLINTBEGIN
76 MCAPI static void** $vftable();
77 // NOLINTEND
78};
Definition CommandOrigin.h:32
Definition CommandOutput.h:19
Definition CommandRegistry.h:44
Definition Command.h:17
Definition MobEventCommand.h:15
Definition MobEventCommand.h:23
Definition Alias.h:14