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 // destructor thunk
40 // NOLINTBEGIN
41
42 // NOLINTEND
43
44public:
45 // virtual function thunks
46 // NOLINTBEGIN
47 MCAPI ::ResolvedItemIconInfo
48 $getIconInfo(::ItemStackBase const& item, int newAnimationFrame, bool inInventoryPane) const;
49
50 MCAPI int $getAnimationFrameFor(::Mob* holder, bool, ::ItemStack const*, bool const) const;
51 // NOLINTEND
52
53public:
54 // vftables
55 // NOLINTBEGIN
56 MCAPI static void** $vftable();
57 // NOLINTEND
58};
Definition ClockItem.h:16
Definition ItemStackBase.h:35
Definition ItemStack.h:25
Definition Item.h:65
Definition Mob.h:47
Definition ResolvedItemIconInfo.h:8