LeviLamina
Loading...
Searching...
No Matches
ImpactDamageSubcomponent.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
32 // NOLINTEND
33
34public:
35 // prevent constructor by default
39
40public:
41 // virtual functions
42 // NOLINTBEGIN
43 // vIndex: 0
44 virtual ~ImpactDamageSubcomponent() /*override*/ = default;
45
46 // vIndex: 1
47 virtual void readfromJSON(::Json::Value& component) /*override*/;
48
49 // vIndex: 2
50 virtual void writetoJSON(::Json::Value& component) const /*override*/;
51
52 // vIndex: 3
53 virtual void doOnHitEffect(::Actor& owner, ::ProjectileComponent& component) /*override*/;
54
55 // vIndex: 4
56 virtual char const* getName() const /*override*/;
57 // NOLINTEND
58
59public:
60 // virtual function thunks
61 // NOLINTBEGIN
62 MCNAPI void $readfromJSON(::Json::Value& component);
63
64 MCNAPI void $writetoJSON(::Json::Value& component) const;
65
66 MCNAPI void $doOnHitEffect(::Actor& owner, ::ProjectileComponent& component);
67
68 MCNAPI char const* $getName() const;
69 // NOLINTEND
70
71public:
72 // vftables
73 // NOLINTBEGIN
74 MCNAPI static void** $vftable();
75 // NOLINTEND
76};
Definition Actor.h:102
Definition ImpactDamageSubcomponent.h:15
MCAPI void $readfromJSON(::Json::Value &component)
static MCAPI void ** $vftable()
MCAPI void $doOnHitEffect(::Actor &owner, ::ProjectileComponent &component)
MCAPI void $writetoJSON(::Json::Value &component) const
MCAPI char const * $getName() const
Definition Value.h:16
Definition OnHitSubcomponent.h:12
Definition ProjectileComponent.h:30
Definition Alias.h:14