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 // vIndex: 108
28 virtual ::ResolvedItemIconInfo
29 getIconInfo(::ItemStackBase const& item, int newAnimationFrame, bool inInventoryPane) const /*override*/;
30
31 // vIndex: 110
32 virtual int getAnimationFrameFor(::Mob* holder, bool, ::ItemStack const*, bool const) const /*override*/;
33
34 // vIndex: 0
35 virtual ~ClockItem() /*override*/ = default;
36 // NOLINTEND
37
38public:
39 // virtual function thunks
40 // NOLINTBEGIN
41 MCAPI ::ResolvedItemIconInfo
42 $getIconInfo(::ItemStackBase const& item, int newAnimationFrame, bool inInventoryPane) const;
43
44 MCAPI int $getAnimationFrameFor(::Mob* holder, bool, ::ItemStack const*, bool const) const;
45 // NOLINTEND
46
47public:
48 // vftables
49 // NOLINTBEGIN
50 MCNAPI static void** $vftable();
51 // NOLINTEND
52};
Definition ClockItem.h:16
static MCAPI void ** $vftable()
Definition ItemStackBase.h:35
Definition ItemStack.h:25
Definition Item.h:65
Definition Mob.h:47
Definition ResolvedItemIconInfo.h:8