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