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