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
16public:
17 // member variables
18 // NOLINTBEGIN
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 // vIndex: 1
32 virtual void readfromJSON(::Json::Value& component) /*override*/;
33
34 // vIndex: 2
35 virtual void writetoJSON(::Json::Value& component) const /*override*/;
36
37 // vIndex: 3
38 virtual void doOnHitEffect(::Actor& owner, ::ProjectileComponent& component) /*override*/;
39
40 // vIndex: 4
41 virtual char const* getName() /*override*/;
42
43 // vIndex: 0
44 virtual ~ArrowEffectSubcomponent() /*override*/ = default;
45 // NOLINTEND
46
47public:
48 // destructor thunk
49 // NOLINTBEGIN
50
51 // NOLINTEND
52
53public:
54 // virtual function thunks
55 // NOLINTBEGIN
56 MCAPI void $readfromJSON(::Json::Value& component);
57
58 MCAPI void $writetoJSON(::Json::Value& component) const;
59
60 MCAPI void $doOnHitEffect(::Actor& owner, ::ProjectileComponent& component);
61
62 MCAPI char const* $getName();
63 // NOLINTEND
64
65public:
66 // vftables
67 // NOLINTBEGIN
68 MCAPI static void** $vftable();
69 // NOLINTEND
70};
Definition Actor.h:104
Definition ArrowEffectSubcomponent.h:15
Definition Value.h:16
Definition MobEffectSubcomponent.h:16
Definition ProjectileComponent.h:30
Definition Alias.h:14