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
19 ::ll::TypedStorage<4, 4, int> mMinXPGranted;
20 ::ll::TypedStorage<4, 4, int> mMaxXPGranted;
21 // NOLINTEND
22
23public:
24 // virtual functions
25 // NOLINTBEGIN
26 virtual ~GrantXPSubcomponent() /*override*/ = default;
27
28 virtual void readfromJSON(::Json::Value& component) /*override*/;
29
30 virtual void writetoJSON(::Json::Value& component) const /*override*/;
31
32 virtual void doOnHitEffect(::Actor& owner, ::ProjectileComponent& component) /*override*/;
33
34 virtual char const* getName() const /*override*/;
35 // NOLINTEND
36
37public:
38 // member functions
39 // NOLINTBEGIN
40 MCAPI GrantXPSubcomponent();
41 // NOLINTEND
42
43public:
44 // constructor thunks
45 // NOLINTBEGIN
46 MCAPI void* $ctor();
47 // NOLINTEND
48
49public:
50 // virtual function thunks
51 // NOLINTBEGIN
52 MCAPI void $readfromJSON(::Json::Value& component);
53
54 MCAPI void $writetoJSON(::Json::Value& component) const;
55
56 MCAPI void $doOnHitEffect(::Actor& owner, ::ProjectileComponent& component);
57
58 MCAPI char const* $getName() const;
59
60
61 // NOLINTEND
62
63public:
64 // vftables
65 // NOLINTBEGIN
66 MCNAPI static void** $vftable();
67 // NOLINTEND
68};
Definition Actor.h:125
static MCAPI void ** $vftable()
Definition Value.h:16
Definition ProjectileComponent.h:31