LeviLamina
Loading...
Searching...
No Matches
DiscFragmentItem.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 CompoundTag;
11class ItemDescriptor;
12class ItemStackBase;
13class Level;
14namespace Bedrock::Safety { class RedactableString; }
15// clang-format on
16
17class DiscFragmentItem : public ::Item {
18public:
19 // virtual functions
20 // NOLINTBEGIN
21 // vIndex: 87
22 virtual ::std::string buildDescriptionId(::ItemDescriptor const&, ::CompoundTag const*) const /*override*/;
23
24 // vIndex: 52
25 virtual void appendFormattedHovertext(
26 ::ItemStackBase const& stack,
27 ::Level& level,
29 bool const showCategory
30 ) const /*override*/;
31
32 // vIndex: 0
33 virtual ~DiscFragmentItem() /*override*/ = default;
34 // NOLINTEND
35
36public:
37 // virtual function thunks
38 // NOLINTBEGIN
39 MCAPI ::std::string $buildDescriptionId(::ItemDescriptor const&, ::CompoundTag const*) const;
40
41 MCAPI void $appendFormattedHovertext(
42 ::ItemStackBase const& stack,
43 ::Level& level,
45 bool const showCategory
46 ) const;
47 // NOLINTEND
48
49public:
50 // vftables
51 // NOLINTBEGIN
52 MCNAPI static void** $vftable();
53 // NOLINTEND
54};
Definition RedactableString.h:10
Definition CompoundTag.h:13
Definition DiscFragmentItem.h:17
static MCAPI void ** $vftable()
Definition ItemDescriptor.h:22
Definition ItemStackBase.h:35
Definition Item.h:65
Definition Level.h:238