LeviLamina
Loading...
Searching...
No Matches
ActorBeforeHealEvent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/ActorHealCause.h"
7
8// auto generated forward declare list
9// clang-format off
10class Actor;
11// clang-format on
12
13struct ActorBeforeHealEvent {
14public:
15 // member variables
16 // NOLINTBEGIN
17 ::ll::TypedStorage<8, 8, ::Actor const&> mEntity;
18 ::ll::TypedStorage<1, 1, ::ActorHealCause> mCause;
19 ::ll::TypedStorage<4, 4, float> mHealing;
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 ActorBeforeHealEvent& operator=(ActorBeforeHealEvent const&);
25 ActorBeforeHealEvent(ActorBeforeHealEvent const&);
26 ActorBeforeHealEvent();
27};
Definition Actor.h:106