LeviLamina
Loading...
Searching...
No Matches
MobEffectSubcomponent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/entity/components_json_legacy/OnHitSubcomponent.h"
7
8// auto generated forward declare list
9// clang-format off
10class Actor;
13namespace Json { class Value; }
14// clang-format on
15
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<8, 24, ::std::vector<::MobEffectInstance>> mMobEffects;
21 // NOLINTEND
22
23public:
24 // virtual functions
25 // NOLINTBEGIN
26 virtual ~MobEffectSubcomponent() /*override*/ = default;
27
28 virtual void readfromJSON(::Json::Value& component) /*override*/;
29
30 virtual void writetoJSON(::Json::Value& component) const /*override*/;
31
32 virtual void doOnHitEffect(::Actor& owner, ::ProjectileComponent& component) /*override*/;
33
34 virtual char const* getName() const /*override*/;
35 // NOLINTEND
36
37public:
38 // member functions
39 // NOLINTBEGIN
40 MCAPI void _addEffectFromJSON(::Json::Value& component);
41 // NOLINTEND
42
43public:
44 // virtual function thunks
45 // NOLINTBEGIN
46 MCAPI void $readfromJSON(::Json::Value& component);
47
48 MCAPI void $writetoJSON(::Json::Value& component) const;
49
50 MCAPI void $doOnHitEffect(::Actor& owner, ::ProjectileComponent& component);
51
52 MCAPI char const* $getName() const;
53
54
55 // NOLINTEND
56
57public:
58 // vftables
59 // NOLINTBEGIN
60 MCNAPI static void** $vftable();
61 // NOLINTEND
62};
Definition Actor.h:105
Definition Value.h:16
Definition MobEffectInstance.h:15
Definition MobEffectSubcomponent.h:16
static MCAPI void ** $vftable()
Definition OnHitSubcomponent.h:12
Definition ProjectileComponent.h:30