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