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 // virtual function thunks
46 // NOLINTBEGIN
47 MCFOLD bool $isPattern() const;
48
49 MCFOLD int $getPatternIndex() const;
50 // NOLINTEND
51
52public:
53 // vftables
54 // NOLINTBEGIN
55 MCNAPI static void** $vftable();
56 // NOLINTEND
57};
Definition BannerPatternItem.h:8
static MCAPI void ** $vftable()
Definition Item.h:65