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 virtual ::std::string buildDescriptionId(::ItemDescriptor const&, ::CompoundTag const*) const /*override*/;
22
23 virtual void appendFormattedHovertext(
24 ::ItemStackBase const& stack,
25 ::Level& level,
27 bool const showCategory
28 ) const /*override*/;
29
30 virtual ~DiscFragmentItem() /*override*/ = default;
31 // NOLINTEND
32
33public:
34 // virtual function thunks
35 // NOLINTBEGIN
36 MCAPI ::std::string $buildDescriptionId(::ItemDescriptor const&, ::CompoundTag const*) const;
37
38 MCAPI void $appendFormattedHovertext(
39 ::ItemStackBase const& stack,
40 ::Level& level,
42 bool const showCategory
43 ) const;
44
45
46 // NOLINTEND
47
48public:
49 // vftables
50 // NOLINTBEGIN
51 MCNAPI static void** $vftable();
52 // NOLINTEND
53};
Definition RedactableString.h:10
Definition CompoundTag.h:23
Definition DiscFragmentItem.h:17
static MCAPI void ** $vftable()
Definition ItemDescriptor.h:23
Definition ItemStackBase.h:44
Definition Level.h:249