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