LeviLamina
Loading...
Searching...
No Matches
BannerPatternItem.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/item/Item.h"
7
8class BannerPatternItem : public ::Item {
9public:
10 // BannerPatternItem inner types define
11 enum class Type : int {
12 CreeperCharge = 0,
13 SkullCharge = 1,
14 FlowerCharge = 2,
15 Thing = 3,
16 FieldMasoned = 4,
17 BordureIndented = 5,
18 Snout = 6,
19 Globe = 7,
20 Flow = 8,
21 Guster = 9,
22 Count = 10,
23 };
24
25public:
26 // member variables
27 // NOLINTBEGIN
28 ::ll::TypedStorage<4, 4, ::BannerPatternItem::Type> mType;
29 // NOLINTEND
30
31public:
32 // prevent constructor by default
33 BannerPatternItem();
34
35public:
36 // virtual functions
37 // NOLINTBEGIN
38 virtual bool isPattern() const /*override*/;
39
40 virtual int getPatternIndex() const /*override*/;
41 // NOLINTEND
42
43public:
44 // member functions
45 // NOLINTBEGIN
46 MCAPI BannerPatternItem(::std::string const& name, int id, ::BannerPatternItem::Type type);
47 // NOLINTEND
48
49public:
50 // static functions
51 // NOLINTBEGIN
52#ifdef LL_PLAT_C
53 MCAPI static ::std::string_view getItemNameIdForType(::BannerPatternItem::Type type);
54#endif
55 // NOLINTEND
56
57public:
58 // constructor thunks
59 // NOLINTBEGIN
60 MCAPI void* $ctor(::std::string const& name, int id, ::BannerPatternItem::Type type);
61 // NOLINTEND
62
63public:
64 // virtual function thunks
65 // NOLINTBEGIN
66 MCFOLD bool $isPattern() const;
67
68 MCFOLD int $getPatternIndex() const;
69
70
71 // NOLINTEND
72
73public:
74 // vftables
75 // NOLINTBEGIN
76 MCAPI static void** $vftable();
77 // NOLINTEND
78};