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