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: 153
22 virtual ::ItemInstance const getBaseSeed() const /*override*/;
23
24 // vIndex: 118
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 // destructor thunk
38 // NOLINTBEGIN
39
40 // NOLINTEND
41
42public:
43 // virtual function thunks
44 // NOLINTBEGIN
45 MCAPI ::ItemInstance const $getBaseSeed() const;
46
47 MCFOLD int $getVariant(::Block const& block) const;
48
49 MCAPI ::AABB const&
50 $getOutline(::Block const& block, ::IConstBlockSource const&, ::BlockPos const& pos, ::AABB& bufferValue) const;
51 // NOLINTEND
52
53public:
54 // vftables
55 // NOLINTBEGIN
56 MCAPI static void** $vftable();
57 // NOLINTEND
58};
Definition AABB.h:16
Definition BlockPos.h:18
Definition Block.h:36
Definition CarrotBlock.h:17
Definition CropBlock.h:24
Definition IConstBlockSource.h:24
Definition ItemInstance.h:16