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