LeviLamina
Loading...
Searching...
No Matches
LoomBlock.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/block/FaceDirectionalBlock.h"
7
8// auto generated forward declare list
9// clang-format off
10class Experiments;
11namespace BlockEvents { class BlockPlayerInteractEvent; }
12// clang-format on
13
15public:
16 // virtual functions
17 // NOLINTBEGIN
18 virtual bool isCraftingBlock() const /*override*/;
19
20 virtual bool isInteractiveBlock() const /*override*/;
21
22 virtual void _addHardCodedBlockComponents(::Experiments const&) /*override*/;
23
24 virtual ~LoomBlock() /*override*/ = default;
25 // NOLINTEND
26
27public:
28 // member functions
29 // NOLINTBEGIN
30 MCFOLD void use(::BlockEvents::BlockPlayerInteractEvent& eventData) const;
31 // NOLINTEND
32
33public:
34 // virtual function thunks
35 // NOLINTBEGIN
36 MCFOLD bool $isCraftingBlock() const;
37
38 MCFOLD bool $isInteractiveBlock() const;
39
40 MCAPI void $_addHardCodedBlockComponents(::Experiments const&);
41
42
43 // NOLINTEND
44
45public:
46 // vftables
47 // NOLINTBEGIN
48 MCAPI static void** $vftable();
49 // NOLINTEND
50};
Definition BlockPlayerInteractEvent.h:17
Definition Experiments.h:14
Definition FaceDirectionalBlock.h:17
Definition LoomBlock.h:14