LeviLamina
Loading...
Searching...
No Matches
CarrotBlock.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/block/CropBlock.h"
7
8// auto generated forward declare list
9// clang-format off
10class AABB;
11class Block;
12class BlockPos;
14class ItemInstance;
15// clang-format on
16
17class CarrotBlock : public ::CropBlock {
18public:
19 // virtual functions
20 // NOLINTBEGIN
21 // vIndex: 150
22 virtual ::ItemInstance const getBaseSeed() const /*override*/;
23
24 // vIndex: 117
25 virtual int getVariant(::Block const& block) const /*override*/;
26
27 // vIndex: 9
28 virtual ::AABB const&
29 getOutline(::Block const& block, ::IConstBlockSource const&, ::BlockPos const& pos, ::AABB& bufferValue) const
30 /*override*/;
31
32 // vIndex: 0
33 virtual ~CarrotBlock() /*override*/ = default;
34 // NOLINTEND
35
36public:
37 // virtual function thunks
38 // NOLINTBEGIN
39 MCAPI ::ItemInstance const $getBaseSeed() const;
40
41 MCFOLD int $getVariant(::Block const& block) const;
42
43 MCAPI ::AABB const&
44 $getOutline(::Block const& block, ::IConstBlockSource const&, ::BlockPos const& pos, ::AABB& bufferValue) const;
45 // NOLINTEND
46
47public:
48 // vftables
49 // NOLINTBEGIN
50 MCNAPI static void** $vftable();
51 // NOLINTEND
52};
Definition AABB.h:18
Definition BlockPos.h:18
Definition Block.h:38
Definition CarrotBlock.h:17
static MCAPI void ** $vftable()
Definition CropBlock.h:25
Definition IConstBlockSource.h:24
Definition ItemInstance.h:16