LeviLamina
Loading...
Searching...
No Matches
StonecutterBlock.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;
13class Player;
14// clang-format on
15
17public:
18 // virtual functions
19 // NOLINTBEGIN
20 // vIndex: 125
21 virtual ::BlockLegacy& init() /*override*/;
22
23 // vIndex: 139
24 virtual bool use(::Player&, ::BlockPos const&, uchar) const /*override*/;
25
26 // vIndex: 30
27 virtual bool isCraftingBlock() const /*override*/;
28
29 // vIndex: 138
30 virtual bool isInteractiveBlock() const /*override*/;
31
32 // vIndex: 23
33 virtual bool canProvideSupport(::Block const&, uchar face, ::BlockSupportType) const /*override*/;
34
35 // vIndex: 0
36 virtual ~StonecutterBlock() /*override*/ = default;
37 // NOLINTEND
38
39public:
40 // destructor thunk
41 // NOLINTBEGIN
42
43 // NOLINTEND
44
45public:
46 // virtual function thunks
47 // NOLINTBEGIN
48 MCAPI ::BlockLegacy& $init();
49
50 MCFOLD bool $use(::Player&, ::BlockPos const&, uchar) const;
51
52 MCFOLD bool $isCraftingBlock() const;
53
54 MCFOLD bool $isInteractiveBlock() const;
55
56 MCFOLD bool $canProvideSupport(::Block const&, uchar face, ::BlockSupportType) const;
57 // NOLINTEND
58
59public:
60 // vftables
61 // NOLINTBEGIN
62 MCAPI static void** $vftable();
63 // NOLINTEND
64};
Definition BlockLegacy.h:88
Definition BlockPos.h:18
Definition Block.h:36
Definition Player.h:119
Definition StonecutterBlock.h:16