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 // destructor thunk
46 // NOLINTBEGIN
47
48 // NOLINTEND
49
50public:
51 // virtual function thunks
52 // NOLINTBEGIN
53 MCAPI ::ItemStack& $use(::ItemStack& item, ::Player& player) const;
54
55 MCFOLD bool $requiresInteract() const;
56
57 MCAPI ::std::string $getInteractText(::Player const& player) const;
58
59 MCAPI ::std::string $buildDescriptionId(::ItemDescriptor const& itemDescriptor, ::CompoundTag const*) const;
60 // NOLINTEND
61
62public:
63 // vftables
64 // NOLINTBEGIN
65 MCAPI static void** $vftable();
66 // NOLINTEND
67};
Definition ComplexItem.h:16
Definition CompoundTag.h:13
Definition EmptyMapItem.h:17
Definition ItemDescriptor.h:22
Definition ItemStackBase.h:35
Definition ItemStack.h:25
Definition Player.h:119