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