LeviLamina
Loading...
Searching...
No Matches
EnchantingTableBlock.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/block/ActorBlockBase.h"
7#include "mc/world/level/block/BlockLegacy.h"
8#include "mc/world/level/block/BlockSupportType.h"
9
10// auto generated forward declare list
11// clang-format off
12class Actor;
13class Block;
14class BlockPos;
15class Experiments;
16namespace BlockEvents { class BlockPlayerInteractEvent; }
17// clang-format on
18
20public:
21 // virtual functions
22 // NOLINTBEGIN
23 // vIndex: 136
24 virtual bool isInteractiveBlock() const /*override*/;
25
26 // vIndex: 29
27 virtual bool isCraftingBlock() const /*override*/;
28
29 // vIndex: 56
30 virtual bool checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const
31 /*override*/;
32
33 // vIndex: 22
34 virtual bool canProvideSupport(::Block const&, uchar face, ::BlockSupportType) const /*override*/;
35
36 // vIndex: 130
37 virtual void _addHardCodedBlockComponents(::Experiments const&) /*override*/;
38
39 // vIndex: 0
40 virtual ~EnchantingTableBlock() /*override*/ = default;
41 // NOLINTEND
42
43public:
44 // member functions
45 // NOLINTBEGIN
46 MCNAPI void use(::BlockEvents::BlockPlayerInteractEvent& eventData) const;
47 // NOLINTEND
48
49public:
50 // virtual function thunks
51 // NOLINTBEGIN
52 MCNAPI bool $isInteractiveBlock() const;
53
54 MCNAPI bool $isCraftingBlock() const;
55
56 MCNAPI bool $checkIsPathable(::Actor& entity, ::BlockPos const& lastPathPos, ::BlockPos const& pathPos) const;
57
58 MCNAPI bool $canProvideSupport(::Block const&, uchar face, ::BlockSupportType) const;
59
61 // NOLINTEND
62
63public:
64 // vftables
65 // NOLINTBEGIN
66 MCNAPI static void** $vftable();
67 // NOLINTEND
68};
Definition ActorBlockBase.h:6
Definition Actor.h:103
Definition BlockPlayerInteractEvent.h:17
Definition BlockPos.h:18
Definition Block.h:38
Definition EnchantingTableBlock.h:19
static MCAPI void ** $vftable()
MCAPI void use(::BlockEvents::BlockPlayerInteractEvent &eventData) const
MCAPI bool $canProvideSupport(::Block const &, uchar face, ::BlockSupportType) const
MCAPI bool $checkIsPathable(::Actor &entity, ::BlockPos const &lastPathPos, ::BlockPos const &pathPos) const
MCAPI bool $isCraftingBlock() const
MCAPI bool $isInteractiveBlock() const
MCAPI void $_addHardCodedBlockComponents(::Experiments const &)
Definition Experiments.h:14