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: 111
28 virtual ::std::string getInteractText(::Player const& player) const /*override*/;
29
30 // vIndex: 89
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
43 MCAPI static bool isLocatorMap(::ItemStackBase const& map);
44 // NOLINTEND
45
46public:
47 // virtual function thunks
48 // NOLINTBEGIN
49 MCAPI ::ItemStack& $use(::ItemStack& item, ::Player& player) const;
50
51 MCFOLD bool $requiresInteract() const;
52
53 MCAPI ::std::string $getInteractText(::Player const& player) const;
54
55 MCAPI ::std::string $buildDescriptionId(::ItemDescriptor const& itemDescriptor, ::CompoundTag const*) const;
56 // NOLINTEND
57
58public:
59 // vftables
60 // NOLINTBEGIN
61 MCNAPI static void** $vftable();
62 // NOLINTEND
63};
Definition ComplexItem.h:16
Definition CompoundTag.h:13
Definition EmptyMapItem.h:17
static MCAPI void ** $vftable()
Definition ItemDescriptor.h:22
Definition ItemStackBase.h:34
Definition ItemStack.h:23
Definition Player.h:123