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