LeviLamina
Loading...
Searching...
No Matches
HeavyCoreBlock.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/block/BlockLegacy.h"
7#include "mc/world/level/block/BlockSupportType.h"
8
9// auto generated forward declare list
10// clang-format off
11class Block;
12class BlockPos;
13// clang-format on
14
16public:
17 // virtual functions
18 // NOLINTBEGIN
19 // vIndex: 23
20 virtual bool canProvideSupport(::Block const&, uchar face, ::BlockSupportType type) const /*override*/;
21
22 // vIndex: 19
23 virtual bool liquidCanFlowIntoFromDirection(
24 uchar flowIntoFacing,
25 ::std::function<::Block const&(::BlockPos const&)> const& getBlock,
26 ::BlockPos const& pos
27 ) const /*override*/;
28
29 // vIndex: 0
30 virtual ~HeavyCoreBlock() /*override*/ = default;
31 // NOLINTEND
32
33public:
34 // destructor thunk
35 // NOLINTBEGIN
36
37 // NOLINTEND
38
39public:
40 // virtual function thunks
41 // NOLINTBEGIN
42 MCAPI bool $canProvideSupport(::Block const&, uchar face, ::BlockSupportType type) const;
43
44 MCFOLD bool $liquidCanFlowIntoFromDirection(
45 uchar flowIntoFacing,
46 ::std::function<::Block const&(::BlockPos const&)> const& getBlock,
47 ::BlockPos const& pos
48 ) const;
49 // NOLINTEND
50
51public:
52 // vftables
53 // NOLINTBEGIN
54 MCAPI static void** $vftable();
55 // NOLINTEND
56};
Definition BlockLegacy.h:88
Definition BlockPos.h:18
Definition Block.h:36
Definition HeavyCoreBlock.h:15