LeviLamina
Loading...
Searching...
No Matches
ActorDefinitionEventSubcomponent.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<1, 1, bool> mAffectShooter;
21 ::ll::TypedStorage<1, 1, bool> mAffectProjectile;
22 ::ll::TypedStorage<1, 1, bool> mAffectTarget;
23 ::ll::TypedStorage<1, 1, bool> mAffectSplashArea;
24 ::ll::TypedStorage<4, 4, float> mSplashArea;
25 ::ll::TypedStorage<8, 104, ::ActorDefinitionTrigger> mTrigger;
26 // NOLINTEND
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 // vIndex: 0
32 virtual ~ActorDefinitionEventSubcomponent() /*override*/ = default;
33
34 // vIndex: 1
35 virtual void readfromJSON(::Json::Value& component) /*override*/;
36
37 // vIndex: 2
38 virtual void writetoJSON(::Json::Value& component) const /*override*/;
39
40 // vIndex: 3
41 virtual void doOnHitEffect(::Actor& owner, ::ProjectileComponent&) /*override*/;
42
43 // vIndex: 4
44 virtual char const* getName() /*override*/;
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&);
61
62 MCAPI char const* $getName();
63 // NOLINTEND
64
65public:
66 // vftables
67 // NOLINTBEGIN
68 MCAPI static void** $vftable();
69 // NOLINTEND
70};
Definition ActorDefinitionEventSubcomponent.h:16
Definition ActorDefinitionTrigger.h:5
Definition Actor.h:104
Definition Value.h:16
Definition OnHitSubcomponent.h:12
Definition ProjectileComponent.h:30