LeviLamina
Loading...
Searching...
No Matches
DebugInfoComponent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/legacy/ActorUniqueID.h"
7#include "mc/world/events/ActorEventListener.h"
8#include "mc/world/events/EventListenerDispatcher.h"
9#include "mc/world/events/EventResult.h"
10
11// auto generated forward declare list
12// clang-format off
13class HashedString;
15// clang-format on
16
17class DebugInfoComponent : public ::EventListenerDispatcher<::ActorEventListener> {
18public:
19 // DebugInfoComponent inner types declare
20 // clang-format off
21 struct Listener;
22 // clang-format on
23
24 // DebugInfoComponent inner types define
25 struct Listener {
26 public:
27 // member variables
28 // NOLINTBEGIN
32 // NOLINTEND
33
34 public:
35 // prevent constructor by default
36 Listener& operator=(Listener const&);
37 Listener(Listener const&);
38 Listener();
39
40 public:
41 // member functions
42 // NOLINTBEGIN
43 MCNAPI ~Listener();
44 // NOLINTEND
45
46 public:
47 // destructor thunk
48 // NOLINTBEGIN
49 MCNAPI void $dtor();
50 // NOLINTEND
51 };
52
53public:
54 // member variables
55 // NOLINTBEGIN
56 ::ll::TypedStorage<8, 24, ::std::vector<::DebugInfoComponent::Listener>> mListeners;
57 ::ll::TypedStorage<8, 64, ::std::unordered_map<::HashedString, uint64>> mPacketHashes;
58 ::ll::TypedStorage<8, 40, ::std::deque<::std::string>> mSentEvents;
59 ::ll::TypedStorage<1, 1, bool> mEventListenerRegistered;
60 ::ll::TypedStorage<8, 8, ::ActorUniqueID> mMobUniqueId;
61 // NOLINTEND
62
63public:
64 // prevent constructor by default
65 DebugInfoComponent& operator=(DebugInfoComponent const&);
67
68public:
69 // virtual functions
70 // NOLINTBEGIN
71 // vIndex: 39
72 virtual ::EventResult onEvent(::ActorDefinitionTriggeredEvent const& actorDefinitionEvent) /*override*/;
73
74 // vIndex: 0
75 virtual ~DebugInfoComponent() /*override*/ = default;
76 // NOLINTEND
77
78public:
79 // member functions
80 // NOLINTBEGIN
82
84
85 MCNAPI ::DebugInfoComponent& operator=(::DebugInfoComponent&&);
86 // NOLINTEND
87
88public:
89 // constructor thunks
90 // NOLINTBEGIN
91 MCNAPI void* $ctor(::DebugInfoComponent&&);
92
93 MCNAPI void* $ctor(::DebugInfoComponent const&);
94 // NOLINTEND
95
96public:
97 // virtual function thunks
98 // NOLINTBEGIN
99 MCNAPI ::EventResult $onEvent(::ActorDefinitionTriggeredEvent const& actorDefinitionEvent);
100 // NOLINTEND
101
102public:
103 // vftables
104 // NOLINTBEGIN
105 MCNAPI static void** $vftable();
106 // NOLINTEND
107};
Definition DebugInfoComponent.h:17
MCAPI::DebugInfoComponent & operator=(::DebugInfoComponent &&)
static MCAPI void ** $vftable()
MCAPI void * $ctor(::DebugInfoComponent &&)
MCAPI::EventResult $onEvent(::ActorDefinitionTriggeredEvent const &actorDefinitionEvent)
MCAPI DebugInfoComponent(::DebugInfoComponent const &)
MCAPI DebugInfoComponent(::DebugInfoComponent &&)
MCAPI void * $ctor(::DebugInfoComponent const &)
Definition EventListenerDispatcher.h:6
Definition HashedString.h:5
Definition ActorDefinitionTriggeredEvent.h:10
Definition DebugInfoComponent.h:25
Definition Alias.h:14