LeviLamina
Loading...
Searching...
No Matches
PickaxeItem.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/item/DiggerItem.h"
7
8// auto generated forward declare list
9// clang-format off
10class ItemStackBase;
11class RenderParams;
12// clang-format on
13
14class PickaxeItem : public ::DiggerItem {
15public:
16 // virtual functions
17 // NOLINTBEGIN
18 // vIndex: 54
19 virtual int getEnchantSlot() const /*override*/;
20
21 // vIndex: 8
22 virtual void executeEvent(::ItemStackBase&, ::std::string const&, ::RenderParams&) const /*override*/;
23
24 // vIndex: 0
25 virtual ~PickaxeItem() /*override*/ = default;
26 // NOLINTEND
27
28public:
29 // virtual function thunks
30 // NOLINTBEGIN
31 MCAPI int $getEnchantSlot() const;
32
33 MCFOLD void $executeEvent(::ItemStackBase&, ::std::string const&, ::RenderParams&) const;
34 // NOLINTEND
35
36public:
37 // vftables
38 // NOLINTBEGIN
39 MCNAPI static void** $vftable();
40 // NOLINTEND
41};
Definition DiggerItem.h:19
Definition ItemStackBase.h:35
Definition PickaxeItem.h:14
static MCAPI void ** $vftable()
Definition RenderParams.h:30