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 // vIndex: 0
27 virtual ~MobEffectSubcomponent() /*override*/ = default;
28
29 // vIndex: 1
30 virtual void readfromJSON(::Json::Value& component) /*override*/;
31
32 // vIndex: 2
33 virtual void writetoJSON(::Json::Value& component) const /*override*/;
34
35 // vIndex: 3
36 virtual void doOnHitEffect(::Actor& owner, ::ProjectileComponent& component) /*override*/;
37
38 // vIndex: 4
39 virtual char const* getName() /*override*/;
40 // NOLINTEND
41
42public:
43 // member functions
44 // NOLINTBEGIN
45 MCNAPI void _addEffectFromJSON(::Json::Value& component);
46 // NOLINTEND
47
48public:
49 // virtual function thunks
50 // NOLINTBEGIN
51 MCNAPI void $readfromJSON(::Json::Value& component);
52
53 MCNAPI void $writetoJSON(::Json::Value& component) const;
54
55 MCNAPI void $doOnHitEffect(::Actor& owner, ::ProjectileComponent& component);
56
57 MCNAPI char const* $getName();
58 // NOLINTEND
59
60public:
61 // vftables
62 // NOLINTBEGIN
63 MCNAPI static void** $vftable();
64 // NOLINTEND
65};
Definition Actor.h:103
Definition Value.h:16
Definition MobEffectInstance.h:15
Definition MobEffectSubcomponent.h:16
MCAPI void $writetoJSON(::Json::Value &component) const
static MCAPI void ** $vftable()
MCAPI char const * $getName()
MCAPI void _addEffectFromJSON(::Json::Value &component)
MCAPI void $readfromJSON(::Json::Value &component)
MCAPI void $doOnHitEffect(::Actor &owner, ::ProjectileComponent &component)
Definition OnHitSubcomponent.h:12
Definition ProjectileComponent.h:30