LeviLamina
Loading...
Searching...
No Matches
HealthAttributeDelegate.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/attribute/AttributeInstanceDelegate.h"
7
8// auto generated forward declare list
9// clang-format off
10class AttributeBuff;
12class Mob;
14// clang-format on
15
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<4, 4, int> mTickCounter;
21 ::ll::TypedStorage<8, 8, ::Mob*> mMob;
22 // NOLINTEND
23
24public:
25 // virtual functions
26 // NOLINTBEGIN
27 // vIndex: 1
28 virtual void tick(::AttributeInstance& mutableInstance, ::AttributeModificationContext& context) /*override*/;
29
30 // vIndex: 3
31 virtual bool willChange(float oldValue, float newValue, ::AttributeBuff const& buff) /*override*/;
32
33 // vIndex: 4
34 virtual float change(float oldValue, float newValue, ::AttributeBuff const& buff) /*override*/;
35
36 // vIndex: 5
37 virtual float getBuffValueWithModifiers(::AttributeBuff const& buff) const /*override*/;
38
39 // vIndex: 0
40 virtual ~HealthAttributeDelegate() /*override*/ = default;
41 // NOLINTEND
42
43public:
44 // destructor thunk
45 // NOLINTBEGIN
46
47 // NOLINTEND
48
49public:
50 // virtual function thunks
51 // NOLINTBEGIN
52 MCAPI void $tick(::AttributeInstance& mutableInstance, ::AttributeModificationContext& context);
53
54 MCAPI bool $willChange(float oldValue, float newValue, ::AttributeBuff const& buff);
55
56 MCAPI float $change(float oldValue, float newValue, ::AttributeBuff const& buff);
57
58 MCAPI float $getBuffValueWithModifiers(::AttributeBuff const& buff) const;
59 // NOLINTEND
60
61public:
62 // vftables
63 // NOLINTBEGIN
64 MCAPI static void** $vftable();
65 // NOLINTEND
66};
Definition AttributeBuff.h:14
Definition AttributeInstanceDelegate.h:13
Definition AttributeInstance.h:16
Definition HealthAttributeDelegate.h:16
Definition Mob.h:47
Definition AttributeModificationContext.h:10
Definition context.h:5