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/BlockSupportType.h"
7#include "mc/world/level/block/BlockType.h"
8
9// auto generated forward declare list
10// clang-format off
11class Block;
12class BlockPos;
13// clang-format on
14
15class HeavyCoreBlock : public ::BlockType {
16public:
17 // prevent constructor by default
18 HeavyCoreBlock();
19
20public:
21 // virtual functions
22 // NOLINTBEGIN
23 virtual bool canProvideSupport(::Block const& face, uchar type, ::BlockSupportType) const /*override*/;
24
25 virtual bool liquidCanFlowIntoFromDirection(
26 uchar flowIntoFacing,
27 ::std::function<::Block const&(::BlockPos const&)> const& getBlock,
28 ::BlockPos const& pos
29 ) const /*override*/;
30 // NOLINTEND
31
32public:
33 // member functions
34 // NOLINTBEGIN
35 MCAPI HeavyCoreBlock(::std::string const& nameId, int id);
36 // NOLINTEND
37
38public:
39 // constructor thunks
40 // NOLINTBEGIN
41 MCAPI void* $ctor(::std::string const& nameId, int id);
42 // NOLINTEND
43
44public:
45 // virtual function thunks
46 // NOLINTBEGIN
47 MCFOLD bool $canProvideSupport(::Block const& face, uchar type, ::BlockSupportType) const;
48
49 MCFOLD bool $liquidCanFlowIntoFromDirection(
50 uchar flowIntoFacing,
51 ::std::function<::Block const&(::BlockPos const&)> const& getBlock,
52 ::BlockPos const& pos
53 ) const;
54
55
56 // NOLINTEND
57
58public:
59 // vftables
60 // NOLINTBEGIN
61 MCAPI static void** $vftable();
62 // NOLINTEND
63};
Definition BlockPos.h:21
Definition Block.h:69