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 // virtual functions
33 // NOLINTBEGIN
34 virtual bool isPattern() const /*override*/;
35
36 virtual int getPatternIndex() const /*override*/;
37
38 virtual ~BannerPatternItem() /*override*/ = default;
39 // NOLINTEND
40
41public:
42 // virtual function thunks
43 // NOLINTBEGIN
44 MCFOLD bool $isPattern() const;
45
46 MCFOLD int $getPatternIndex() const;
47
48
49 // NOLINTEND
50
51public:
52 // vftables
53 // NOLINTBEGIN
54 MCAPI static void** $vftable();
55 // NOLINTEND
56};
Definition BannerPatternItem.h:8