LeviLamina
Loading...
Searching...
No Matches
CraftingTableBlock.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
8// auto generated forward declare list
9// clang-format off
10class BlockPos;
11class Experiments;
12class Player;
13// clang-format on
14
16public:
17 // virtual functions
18 // NOLINTBEGIN
19 // vIndex: 139
20 virtual bool use(::Player& player, ::BlockPos const& pos, uchar face) const /*override*/;
21
22 // vIndex: 30
23 virtual bool isCraftingBlock() const /*override*/;
24
25 // vIndex: 131
26 virtual void _addHardCodedBlockComponents(::Experiments const& experiments) /*override*/;
27
28 // vIndex: 0
29 virtual ~CraftingTableBlock() /*override*/ = default;
30 // NOLINTEND
31
32public:
33 // destructor thunk
34 // NOLINTBEGIN
35
36 // NOLINTEND
37
38public:
39 // virtual function thunks
40 // NOLINTBEGIN
41 MCAPI bool $use(::Player& player, ::BlockPos const& pos, uchar face) const;
42
43 MCFOLD bool $isCraftingBlock() const;
44
45 MCFOLD void $_addHardCodedBlockComponents(::Experiments const& experiments);
46 // NOLINTEND
47
48public:
49 // vftables
50 // NOLINTBEGIN
51 MCAPI static void** $vftable();
52 // NOLINTEND
53};
Definition BlockLegacy.h:88
Definition BlockPos.h:18
Definition CraftingTableBlock.h:15
Definition Experiments.h:14
Definition Player.h:119