LeviLamina
Loading...
Searching...
No Matches
HungerAttributeDelegate.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
11class Player;
13// clang-format on
14
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<4, 4, int> mActionTickTimer;
20 ::ll::TypedStorage<4, 4, int> mTickCounter;
21 ::ll::TypedStorage<4, 4, float> mLastFoodLevel;
22 ::ll::TypedStorage<8, 8, ::Player*> mPlayer;
23 // NOLINTEND
24
25public:
26 // virtual functions
27 // NOLINTBEGIN
28 virtual void tick(::AttributeInstance& mutableInstance, ::AttributeModificationContext& context) /*override*/;
29
30 virtual void notify(int64 type, ::AttributeModificationContext& context) /*override*/;
31
32 virtual ~HungerAttributeDelegate() /*override*/ = default;
33 // NOLINTEND
34
35public:
36 // member functions
37 // NOLINTBEGIN
38 MCAPI bool _canPlayerBeAffectedByHunger() const;
39 // NOLINTEND
40
41public:
42 // virtual function thunks
43 // NOLINTBEGIN
44 MCAPI void $tick(::AttributeInstance& mutableInstance, ::AttributeModificationContext& context);
45
46 MCAPI void $notify(int64 type, ::AttributeModificationContext& context);
47
48
49 // NOLINTEND
50
51public:
52 // vftables
53 // NOLINTBEGIN
54 MCAPI static void** $vftable();
55 // NOLINTEND
56};
Definition AttributeInstanceDelegate.h:15
Definition AttributeInstance.h:16
Definition HungerAttributeDelegate.h:15
Definition Player.h:125
Definition AttributeModificationContext.h:10
Definition context.h:5