LeviLamina
Loading...
Searching...
No Matches
SmithingTemplateItem.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 ItemStackBase;
11class Level;
12namespace Bedrock::Safety { class RedactableString; }
13// clang-format on
14
15class SmithingTemplateItem : public ::Item {
16public:
17 // SmithingTemplateItem inner types define
18 enum class UpgradeType : int {
19 NetheriteUpgrade = 0,
20 ArmorTrim = 1,
21 Count = 2,
22 };
23
24public:
25 // member variables
26 // NOLINTBEGIN
27 ::ll::TypedStorage<8, 32, ::std::string const> mAppliesToText;
28 ::ll::TypedStorage<8, 32, ::std::string const> mIngredientsText;
29 // NOLINTEND
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34 virtual void appendFormattedHovertext(
35 ::ItemStackBase const& stack,
36 ::Level& level,
38 bool const showCategory
39 ) const /*override*/;
40 // NOLINTEND
41
42public:
43 // virtual function thunks
44 // NOLINTBEGIN
45 MCAPI void $appendFormattedHovertext(
46 ::ItemStackBase const& stack,
47 ::Level& level,
49 bool const showCategory
50 ) const;
51
52
53 // NOLINTEND
54
55public:
56 // vftables
57 // NOLINTBEGIN
58 MCAPI static void** $vftable();
59 // NOLINTEND
60};
Definition ArmorTrim.h:16
Definition RedactableString.h:10
Definition ItemStackBase.h:52
Definition Level.h:255
Definition SmithingTemplateItem.h:15