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