LeviLamina
Loading...
Searching...
No Matches
CartographyTableBlock.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
10namespace BlockEvents { class BlockPlayerInteractEvent; }
11// clang-format on
12
13class CartographyTableBlock : public ::BlockType {
14public:
15 // prevent constructor by default
16 CartographyTableBlock();
17
18public:
19 // virtual functions
20 // NOLINTBEGIN
21 virtual bool isCraftingBlock() const /*override*/;
22
23 virtual bool isInteractiveBlock() const /*override*/;
24 // NOLINTEND
25
26public:
27 // member functions
28 // NOLINTBEGIN
29 MCAPI CartographyTableBlock(::std::string const& nameId, int id);
30
31 MCFOLD void use(::BlockEvents::BlockPlayerInteractEvent& eventData) const;
32 // NOLINTEND
33
34public:
35 // constructor thunks
36 // NOLINTBEGIN
37 MCAPI void* $ctor(::std::string const& nameId, int id);
38 // NOLINTEND
39
40public:
41 // virtual function thunks
42 // NOLINTBEGIN
43 MCFOLD bool $isCraftingBlock() const;
44
45 MCFOLD bool $isInteractiveBlock() const;
46
47
48 // NOLINTEND
49
50public:
51 // vftables
52 // NOLINTBEGIN
53 MCAPI static void** $vftable();
54 // NOLINTEND
55};
Definition BlockPlayerInteractEvent.h:20