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 // prevent constructor by default
20 DiscFragmentItem();
21
22public:
23 // virtual functions
24 // NOLINTBEGIN
25 virtual ::std::string buildDescriptionId(::ItemDescriptor const&, ::CompoundTag const*) const /*override*/;
26
27 virtual void appendFormattedHovertext(
28 ::ItemStackBase const& stack,
29 ::Level& level,
31 bool const showCategory
32 ) const /*override*/;
33 // NOLINTEND
34
35public:
36 // member functions
37 // NOLINTBEGIN
38 MCAPI DiscFragmentItem(::std::string const& name, int id);
39 // NOLINTEND
40
41public:
42 // constructor thunks
43 // NOLINTBEGIN
44 MCAPI void* $ctor(::std::string const& name, int id);
45 // NOLINTEND
46
47public:
48 // virtual function thunks
49 // NOLINTBEGIN
50 MCAPI ::std::string $buildDescriptionId(::ItemDescriptor const&, ::CompoundTag const*) const;
51
52 MCAPI void $appendFormattedHovertext(
53 ::ItemStackBase const& stack,
54 ::Level& level,
56 bool const showCategory
57 ) const;
58
59
60 // NOLINTEND
61
62public:
63 // vftables
64 // NOLINTBEGIN
65 MCNAPI static void** $vftable();
66 // NOLINTEND
67};
Definition RedactableString.h:10
Definition CompoundTag.h:23
static MCAPI void ** $vftable()
Definition ItemDescriptor.h:25
Definition ItemStackBase.h:52
Definition Level.h:255