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