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