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#include "mc/world/actor/ActorDefinitionTrigger.h"
8
9// auto generated forward declare list
10// clang-format off
11class Actor;
13namespace Json { class Value; }
14// clang-format on
15
16class ActorDefinitionEventSubcomponent : public ::OnHitSubcomponent {
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 virtual ~ActorDefinitionEventSubcomponent() /*override*/ = default;
32
33 virtual void readfromJSON(::Json::Value& component) /*override*/;
34
35 virtual void writetoJSON(::Json::Value& component) const /*override*/;
36
37 virtual void doOnHitEffect(::Actor& owner, ::ProjectileComponent&) /*override*/;
38
39 virtual char const* getName() const /*override*/;
40 // NOLINTEND
41
42public:
43 // member functions
44 // NOLINTBEGIN
45 MCAPI ActorDefinitionEventSubcomponent();
46 // NOLINTEND
47
48public:
49 // constructor thunks
50 // NOLINTBEGIN
51 MCAPI void* $ctor();
52 // NOLINTEND
53
54public:
55 // virtual function thunks
56 // NOLINTBEGIN
57 MCAPI void $readfromJSON(::Json::Value& component);
58
59 MCAPI void $writetoJSON(::Json::Value& component) const;
60
61 MCAPI void $doOnHitEffect(::Actor& owner, ::ProjectileComponent&);
62
63 MCAPI char const* $getName() const;
64
65
66 // NOLINTEND
67
68public:
69 // vftables
70 // NOLINTBEGIN
71 MCNAPI static void** $vftable();
72 // NOLINTEND
73};
static MCAPI void ** $vftable()
Definition Actor.h:125
Definition Value.h:16
Definition ProjectileComponent.h:31