LeviLamina
Loading...
Searching...
No Matches
CactusFlowerBlock.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/block/FoliageBlock.h"
7
8// auto generated forward declare list
9// clang-format off
10class BlockPos;
11class BlockSource;
12// clang-format on
13
14class CactusFlowerBlock : public ::FoliageBlock {
15public:
16 // prevent constructor by default
17 CactusFlowerBlock();
18
19public:
20 // virtual functions
21 // NOLINTBEGIN
22 virtual bool mayPlace(::BlockSource& region, ::BlockPos const& pos) const /*override*/;
23
24 virtual bool mayPlaceOn(::BlockSource& region, ::BlockPos const& pos) const /*override*/;
25 // NOLINTEND
26
27public:
28 // member functions
29 // NOLINTBEGIN
30 MCAPI CactusFlowerBlock(::std::string const& nameId, int id);
31 // NOLINTEND
32
33public:
34 // constructor thunks
35 // NOLINTBEGIN
36 MCAPI void* $ctor(::std::string const& nameId, int id);
37 // NOLINTEND
38
39public:
40 // virtual function thunks
41 // NOLINTBEGIN
42 MCFOLD bool $mayPlace(::BlockSource& region, ::BlockPos const& pos) const;
43
44 MCAPI bool $mayPlaceOn(::BlockSource& region, ::BlockPos const& pos) const;
45
46
47 // NOLINTEND
48
49public:
50 // vftables
51 // NOLINTBEGIN
52 MCAPI static void** $vftable();
53 // NOLINTEND
54};
Definition BlockPos.h:21
Definition BlockSource.h:73