LeviLamina
Loading...
Searching...
No Matches
EmptyMapItem.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/item/ComplexItem.h"
7
8// auto generated forward declare list
9// clang-format off
10class CompoundTag;
11class ItemDescriptor;
12class ItemStack;
13class ItemStackBase;
14class Player;
15// clang-format on
16
18public:
19 // virtual functions
20 // NOLINTBEGIN
21 // vIndex: 76
22 virtual ::ItemStack& use(::ItemStack& item, ::Player& player) const /*override*/;
23
24 // vIndex: 50
25 virtual bool requiresInteract() const /*override*/;
26
27 // vIndex: 109
28 virtual ::std::string getInteractText(::Player const& player) const /*override*/;
29
30 // vIndex: 87
31 virtual ::std::string buildDescriptionId(::ItemDescriptor const& itemDescriptor, ::CompoundTag const*) const
32 /*override*/;
33
34 // vIndex: 0
35 virtual ~EmptyMapItem() /*override*/ = default;
36 // NOLINTEND
37
38public:
39 // static functions
40 // NOLINTBEGIN
41 MCAPI static void addPlayerMarker(::ItemStackBase& map);
42 // NOLINTEND
43
44public:
45 // virtual function thunks
46 // NOLINTBEGIN
47 MCAPI ::ItemStack& $use(::ItemStack& item, ::Player& player) const;
48
49 MCFOLD bool $requiresInteract() const;
50
51 MCAPI ::std::string $getInteractText(::Player const& player) const;
52
53 MCAPI ::std::string $buildDescriptionId(::ItemDescriptor const& itemDescriptor, ::CompoundTag const*) const;
54 // NOLINTEND
55
56public:
57 // vftables
58 // NOLINTBEGIN
59 MCNAPI static void** $vftable();
60 // NOLINTEND
61};
Definition ComplexItem.h:16
Definition CompoundTag.h:13
Definition EmptyMapItem.h:17
static MCAPI void ** $vftable()
Definition ItemDescriptor.h:22
Definition ItemStackBase.h:35
Definition ItemStack.h:25
Definition Player.h:119