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 // prevent constructor by default
26 ClockItem();
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 virtual ::ResolvedItemIconInfo
32 getIconInfo(::ItemStackBase const& item, int newAnimationFrame, bool inInventoryPane) const /*override*/;
33
34 virtual int getAnimationFrameFor(::Mob* holder, bool, ::ItemStack const*, bool const) const /*override*/;
35 // NOLINTEND
36
37public:
38 // member functions
39 // NOLINTBEGIN
40 MCAPI ClockItem(::std::string const& name, int id);
41
42#ifdef LL_PLAT_C
43 MCFOLD void setTextureDimensions(ushort texSizeW, ushort texSizeH);
44#endif
45 // NOLINTEND
46
47public:
48 // constructor thunks
49 // NOLINTBEGIN
50 MCAPI void* $ctor(::std::string const& name, int id);
51 // NOLINTEND
52
53public:
54 // virtual function thunks
55 // NOLINTBEGIN
56 MCAPI ::ResolvedItemIconInfo
57 $getIconInfo(::ItemStackBase const& item, int newAnimationFrame, bool inInventoryPane) const;
58
59 MCAPI int $getAnimationFrameFor(::Mob* holder, bool, ::ItemStack const*, bool const) const;
60
61
62 // NOLINTEND
63
64public:
65 // vftables
66 // NOLINTBEGIN
67 MCAPI static void** $vftable();
68 // NOLINTEND
69};
Definition ItemStackBase.h:52
Definition ItemStack.h:35
Definition Mob.h:57
Definition ResolvedItemIconInfo.h:8