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 // destructor thunk
51 // NOLINTBEGIN
52
53 // NOLINTEND
54
55public:
56 // virtual function thunks
57 // NOLINTBEGIN
58 MCAPI void $readfromJSON(::Json::Value& component);
59
60 MCAPI void $writetoJSON(::Json::Value& component) const;
61
62 MCAPI void $doOnHitEffect(::Actor& owner, ::ProjectileComponent&);
63
64 MCAPI char const* $getName();
65 // NOLINTEND
66
67public:
68 // vftables
69 // NOLINTBEGIN
70 MCAPI static void** $vftable();
71 // NOLINTEND
72};
Definition Actor.h:104
Definition HurtOwnerSubcomponent.h:15
Definition Value.h:16
Definition OnHitSubcomponent.h:12
Definition ProjectileComponent.h:30
Definition Alias.h:14