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/BlockType.h"
7
8// auto generated forward declare list
9// clang-format off
10class Experiments;
11namespace BlockEvents { class BlockPlayerInteractEvent; }
12// clang-format on
13
14class CraftingTableBlock : public ::BlockType {
15public:
16 // virtual functions
17 // NOLINTBEGIN
18 virtual bool isCraftingBlock() const /*override*/;
19
20 virtual void _addHardCodedBlockComponents(::Experiments const& experiments) /*override*/;
21
22 virtual ~CraftingTableBlock() /*override*/ = default;
23 // NOLINTEND
24
25public:
26 // member functions
27 // NOLINTBEGIN
28 MCAPI void use(::BlockEvents::BlockPlayerInteractEvent& eventData) const;
29 // NOLINTEND
30
31public:
32 // virtual function thunks
33 // NOLINTBEGIN
34 MCFOLD bool $isCraftingBlock() const;
35
36 MCAPI void $_addHardCodedBlockComponents(::Experiments const& experiments);
37
38
39 // NOLINTEND
40
41public:
42 // vftables
43 // NOLINTBEGIN
44 MCAPI static void** $vftable();
45 // NOLINTEND
46};
Definition BlockPlayerInteractEvent.h:17
Definition CraftingTableBlock.h:14
Definition Experiments.h:14