LeviLamina
Loading...
Searching...
No Matches
MobEffectComponent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class Actor;
9class ExpiringTick;
10struct EffectDuration;
11// clang-format on
12
14public:
15 // member variables
16 // NOLINTBEGIN
17 ::ll::TypedStorage<4, 4, float> mEffectRange;
18 ::ll::TypedStorage<4, 4, int> mEffectId;
19 ::ll::TypedStorage<4, 4, ::EffectDuration> mEffectTime;
20 ::ll::TypedStorage<2, 2, ushort> mCooldownTicks;
21 ::ll::TypedStorage<8, 64, ::ActorFilterGroup> mEntityFilter;
22 ::ll::TypedStorage<8, 24, ::std::optional<::ExpiringTick>> mCooldown;
23 // NOLINTEND
24
25public:
26 // member functions
27 // NOLINTBEGIN
28 MCAPI void tick(::Actor& owner);
29
30 MCAPI ~MobEffectComponent();
31 // NOLINTEND
32
33public:
34 // destructor thunk
35 // NOLINTBEGIN
36 MCAPI void $dtor();
37 // NOLINTEND
38};
Definition ActorFilterGroup.h:16
Definition Actor.h:104
Definition ExpiringTick.h:5
Definition MobEffectComponent.h:13
Definition EffectDuration.h:5