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 virtual ::ItemInstance const getBaseSeed() const /*override*/;
22
23 virtual int getVariant(::Block const& block) const /*override*/;
24
25 virtual ::AABB const&
26 getOutline(::Block const& block, ::IConstBlockSource const&, ::BlockPos const& pos, ::AABB& bufferValue) const
27 /*override*/;
28
29 virtual ~CarrotBlock() /*override*/ = default;
30 // NOLINTEND
31
32public:
33 // virtual function thunks
34 // NOLINTBEGIN
35 MCAPI ::ItemInstance const $getBaseSeed() const;
36
37 MCFOLD int $getVariant(::Block const& block) const;
38
39 MCAPI ::AABB const&
40 $getOutline(::Block const& block, ::IConstBlockSource const&, ::BlockPos const& pos, ::AABB& bufferValue) const;
41
42
43 // NOLINTEND
44
45public:
46 // vftables
47 // NOLINTBEGIN
48 MCAPI static void** $vftable();
49 // NOLINTEND
50};
Definition AABB.h:18
Definition BlockPos.h:19
Definition Block.h:43
Definition CarrotBlock.h:17
Definition IConstBlockSource.h:25
Definition ItemInstance.h:15