LeviLamina
Loading...
Searching...
No Matches
ShulkerBoxBlockItem.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 ShulkerBoxBlockItem : 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 ::std::string buildEffectDescriptionName(::ItemStackBase const& stack, bool) const /*override*/;
28
29 virtual int getLevelDataForAuxValue(int auxValue) const /*override*/;
30
31 virtual ~ShulkerBoxBlockItem() /*override*/ = default;
32 // NOLINTEND
33
34public:
35 // member functions
36 // NOLINTBEGIN
37 MCAPI ::std::string _buildContainedItemList(::CompoundTag const* containerList) const;
38 // NOLINTEND
39
40public:
41 // virtual function thunks
42 // NOLINTBEGIN
43 MCAPI void $appendFormattedHovertext(
44 ::ItemStackBase const& stack,
45 ::Level& level,
47 bool const showCategory
48 ) const;
49
50 MCAPI ::std::string $buildEffectDescriptionName(::ItemStackBase const& stack, bool) const;
51
52 MCAPI int $getLevelDataForAuxValue(int auxValue) const;
53
54
55 // NOLINTEND
56
57public:
58 // vftables
59 // NOLINTBEGIN
60 MCAPI static void** $vftable();
61 // NOLINTEND
62};
Definition RedactableString.h:10
Definition CompoundTag.h:23
Definition ItemStackBase.h:44
Definition Level.h:249
Definition ShulkerBoxBlockItem.h:16