LeviLamina
Loading...
Searching...
No Matches
WaterlilyBlock.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/optional_ref.h"
7#include "mc/world/level/block/BushBlock.h"
8
9// auto generated forward declare list
10// clang-format off
11class AABB;
12class Block;
13class BlockPos;
14class BlockSource;
17// clang-format on
18
20public:
21 // virtual functions
22 // NOLINTBEGIN
23 // vIndex: 81
24 virtual bool mayPlaceOn(::BlockSource& region, ::BlockPos const& pos) const /*override*/;
25
26 // vIndex: 142
27 virtual bool canSurvive(::BlockSource& region, ::BlockPos const& pos) const /*override*/;
28
29 // vIndex: 5
30 virtual ::AABB getCollisionShape(
31 ::Block const& block,
32 ::IConstBlockSource const& region,
33 ::BlockPos const& pos,
35 ) const /*override*/;
36
37 // vIndex: 31
38 virtual bool isLavaBlocking() const /*override*/;
39
40 // vIndex: 0
41 virtual ~WaterlilyBlock() /*override*/ = default;
42 // NOLINTEND
43
44public:
45 // destructor thunk
46 // NOLINTBEGIN
47
48 // NOLINTEND
49
50public:
51 // virtual function thunks
52 // NOLINTBEGIN
53 MCAPI bool $mayPlaceOn(::BlockSource& region, ::BlockPos const& pos) const;
54
55 MCAPI bool $canSurvive(::BlockSource& region, ::BlockPos const& pos) const;
56
57 MCFOLD ::AABB $getCollisionShape(
58 ::Block const& block,
59 ::IConstBlockSource const& region,
60 ::BlockPos const& pos,
62 ) const;
63
64 MCFOLD bool $isLavaBlocking() const;
65 // NOLINTEND
66
67public:
68 // vftables
69 // NOLINTBEGIN
70 MCAPI static void** $vftable();
71 // NOLINTEND
72};
Definition AABB.h:16
Definition BlockPos.h:18
Definition BlockSource.h:67
Definition Block.h:36
Definition BushBlock.h:23
Definition GetCollisionShapeInterface.h:13
Definition IConstBlockSource.h:24
Definition WaterlilyBlock.h:19
Definition optional_ref.h:10