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