LeviLamina
Loading...
Searching...
No Matches
HurtOwnerSubcomponent.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;
12namespace Json { class Value; }
13// clang-format on
14
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<4, 4, float> mOwnerDamage;
20 ::ll::TypedStorage<1, 1, bool> mKnockback;
21 ::ll::TypedStorage<1, 1, bool> mIgnite;
22 // NOLINTEND
23
24public:
25 // virtual functions
26 // NOLINTBEGIN
27 virtual ~HurtOwnerSubcomponent() /*override*/ = default;
28
29 virtual void readfromJSON(::Json::Value& component) /*override*/;
30
31 virtual void writetoJSON(::Json::Value& component) const /*override*/;
32
33 virtual void doOnHitEffect(::Actor& owner, ::ProjectileComponent&) /*override*/;
34
35 virtual char const* getName() const /*override*/;
36 // NOLINTEND
37
38public:
39 // virtual function thunks
40 // NOLINTBEGIN
41 MCAPI void $readfromJSON(::Json::Value& component);
42
43 MCAPI void $writetoJSON(::Json::Value& component) const;
44
45 MCAPI void $doOnHitEffect(::Actor& owner, ::ProjectileComponent&);
46
47 MCAPI char const* $getName() const;
48
49
50 // NOLINTEND
51
52public:
53 // vftables
54 // NOLINTBEGIN
55 MCNAPI static void** $vftable();
56 // NOLINTEND
57};
Definition Actor.h:106
Definition HurtOwnerSubcomponent.h:15
static MCAPI void ** $vftable()
Definition Value.h:16
Definition OnHitSubcomponent.h:12
Definition ProjectileComponent.h:30