LeviLamina
Loading...
Searching...
No Matches
DecoratedPotBlockItem.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/item/BlockItem.h"
7
8// auto generated forward declare list
9// clang-format off
10class CompoundTag;
11class ItemStackBase;
12class Level;
13namespace Bedrock::Safety { class RedactableString; }
14// clang-format on
15
16class DecoratedPotBlockItem : public ::BlockItem {
17public:
18 // virtual functions
19 // NOLINTBEGIN
20 virtual void appendFormattedHovertext(
21 ::ItemStackBase const& stack,
22 ::Level& level,
24 bool const showCategory
25 ) const /*override*/;
26
27 virtual void fixupCommon(::ItemStackBase& stack) const /*override*/;
28
29 virtual ~DecoratedPotBlockItem() /*override*/ = default;
30 // NOLINTEND
31
32public:
33 // member functions
34 // NOLINTBEGIN
35 MCAPI ::std::string buildIngredientItemList(::CompoundTag const* ingredientList) const;
36 // NOLINTEND
37
38public:
39 // virtual function thunks
40 // NOLINTBEGIN
41 MCAPI void $appendFormattedHovertext(
42 ::ItemStackBase const& stack,
43 ::Level& level,
45 bool const showCategory
46 ) const;
47
48 MCAPI void $fixupCommon(::ItemStackBase& stack) const;
49
50
51 // NOLINTEND
52
53public:
54 // vftables
55 // NOLINTBEGIN
56 MCNAPI static void** $vftable();
57 // NOLINTEND
58};
Definition RedactableString.h:10
Definition CompoundTag.h:23
Definition DecoratedPotBlockItem.h:16
static MCAPI void ** $vftable()
Definition ItemStackBase.h:44
Definition Level.h:250