LeviLamina
Loading...
Searching...
No Matches
CombatRegenerationListener.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/EventResult.h"
9
10// auto generated forward declare list
11// clang-format off
14// clang-format on
15
16class CombatRegenerationListener : public ::ActorEventListener {
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<8, 8, ::ActorEventCoordinator&> mActorEventCoordinator;
21 ::ll::TypedStorage<8, 8, ::ActorUniqueID> mTargetActorId;
22 ::ll::TypedStorage<8, 8, ::ActorUniqueID> mMobId;
23 ::ll::TypedStorage<1, 1, bool> mTargetKilledByMob;
24 // NOLINTEND
25
26public:
27 // prevent constructor by default
28 CombatRegenerationListener& operator=(CombatRegenerationListener const&);
29 CombatRegenerationListener(CombatRegenerationListener const&);
30 CombatRegenerationListener();
31
32public:
33 // virtual functions
34 // NOLINTBEGIN
35 virtual ~CombatRegenerationListener() /*override*/ = default;
36
37 virtual ::EventResult onEvent(::ActorNotificationEvent const& event) /*override*/;
38 // NOLINTEND
39
40public:
41 // member functions
42 // NOLINTBEGIN
43 MCAPI explicit CombatRegenerationListener(::ActorEventCoordinator& coordinator);
44 // NOLINTEND
45
46public:
47 // constructor thunks
48 // NOLINTBEGIN
49 MCAPI void* $ctor(::ActorEventCoordinator& coordinator);
50 // NOLINTEND
51
52public:
53 // virtual function thunks
54 // NOLINTBEGIN
55 MCAPI ::EventResult $onEvent(::ActorNotificationEvent const& event);
56
57
58 // NOLINTEND
59
60public:
61 // vftables
62 // NOLINTBEGIN
63 MCNAPI static void** $vftable();
64 // NOLINTEND
65};
Definition ActorEventCoordinator.h:26
Definition ActorEventListener.h:20
static MCAPI void ** $vftable()
Definition ActorNotificationEvent.h:105