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 // destructor thunk
38 // NOLINTBEGIN
39
40 // NOLINTEND
41
42public:
43 // virtual function thunks
44 // NOLINTBEGIN
45 MCAPI ::std::string $buildDescriptionId(::ItemDescriptor const&, ::CompoundTag const*) const;
46
47 MCAPI void $appendFormattedHovertext(
48 ::ItemStackBase const& stack,
49 ::Level& level,
51 bool const showCategory
52 ) const;
53 // NOLINTEND
54
55public:
56 // vftables
57 // NOLINTBEGIN
58 MCAPI static void** $vftable();
59 // NOLINTEND
60};
Definition RedactableString.h:10
Definition CompoundTag.h:13
Definition DiscFragmentItem.h:17
Definition ItemDescriptor.h:22
Definition ItemStackBase.h:35
Definition Item.h:65
Definition Level.h:234