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
15class StickInGroundSubcomponent : public ::OnHitSubcomponent {
16public:
17 // member variables
18 // NOLINTBEGIN
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 StickInGroundSubcomponent& operator=(StickInGroundSubcomponent const&);
25 StickInGroundSubcomponent(StickInGroundSubcomponent const&);
26 StickInGroundSubcomponent();
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 virtual ~StickInGroundSubcomponent() /*override*/ = default;
32
33 virtual void readfromJSON(::Json::Value& component) /*override*/;
34
35 virtual void writetoJSON(::Json::Value& component) const /*override*/;
36
37 virtual void doOnHitEffect(::Actor& owner, ::ProjectileComponent& component) /*override*/;
38
39 virtual char const* getName() const /*override*/;
40 // NOLINTEND
41
42public:
43 // virtual function thunks
44 // NOLINTBEGIN
45 MCAPI void $readfromJSON(::Json::Value& component);
46
47 MCAPI void $writetoJSON(::Json::Value& component) const;
48
49 MCAPI void $doOnHitEffect(::Actor& owner, ::ProjectileComponent& component);
50
51 MCAPI char const* $getName() const;
52
53
54 // NOLINTEND
55
56public:
57 // vftables
58 // NOLINTBEGIN
59 MCNAPI static void** $vftable();
60 // NOLINTEND
61};
Definition Actor.h:105
Definition Value.h:16
Definition OnHitSubcomponent.h:12
Definition ProjectileComponent.h:30
static MCAPI void ** $vftable()
Definition Alias.h:14