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 // NOLINTEND
31
32public:
33 // member functions
34 // NOLINTBEGIN
35 MCAPI ::std::string _buildContainedItemList(::CompoundTag const* containerList) 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 ::std::string $buildEffectDescriptionName(::ItemStackBase const& stack, bool) const;
49
50 MCAPI int $getLevelDataForAuxValue(int auxValue) const;
51
52
53 // NOLINTEND
54
55public:
56 // vftables
57 // NOLINTBEGIN
58 MCAPI static void** $vftable();
59 // NOLINTEND
60};
Definition RedactableString.h:10
Definition CompoundTag.h:23
Definition ItemStackBase.h:52
Definition Level.h:255
Definition ShulkerBoxBlockItem.h:16