LeviLamina
Loading...
Searching...
No Matches
ClockItem.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/item/Item.h"
7
8// auto generated forward declare list
9// clang-format off
10class ItemStack;
11class ItemStackBase;
12class Mob;
14// clang-format on
15
16class ClockItem : public ::Item {
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<4, 4, int> mAtlasWidth;
21 ::ll::TypedStorage<4, 4, int> mAtlasHeight;
22 // NOLINTEND
23
24public:
25 // virtual functions
26 // NOLINTBEGIN
27 virtual ::ResolvedItemIconInfo
28 getIconInfo(::ItemStackBase const& item, int newAnimationFrame, bool inInventoryPane) const /*override*/;
29
30 virtual int getAnimationFrameFor(::Mob* holder, bool, ::ItemStack const*, bool const) const /*override*/;
31
32 virtual ~ClockItem() /*override*/ = default;
33 // NOLINTEND
34
35public:
36 // virtual function thunks
37 // NOLINTBEGIN
38 MCAPI ::ResolvedItemIconInfo
39 $getIconInfo(::ItemStackBase const& item, int newAnimationFrame, bool inInventoryPane) const;
40
41 MCAPI int $getAnimationFrameFor(::Mob* holder, bool, ::ItemStack const*, bool const) const;
42
43
44 // NOLINTEND
45
46public:
47 // vftables
48 // NOLINTBEGIN
49 MCAPI static void** $vftable();
50 // NOLINTEND
51};
Definition ClockItem.h:16
Definition ItemStackBase.h:44
Definition ItemStack.h:26
Definition Mob.h:50
Definition ResolvedItemIconInfo.h:8