LeviLamina
Loading...
Searching...
No Matches
PoweredRailBlock.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/block/BaseRailBlock.h"
7
8// auto generated forward declare list
9// clang-format off
10class Block;
11class BlockPos;
12class BlockSource;
13// clang-format on
14
16public:
17 // virtual functions
18 // NOLINTBEGIN
19 // vIndex: 118
20 virtual int getVariant(::Block const& block) const /*override*/;
21
22 // vIndex: 61
23 virtual void onRedstoneUpdate(::BlockSource& region, ::BlockPos const& pos, int strength, bool isFirstTime) const
24 /*override*/;
25
26 // vIndex: 0
27 virtual ~PoweredRailBlock() /*override*/ = default;
28 // NOLINTEND
29
30public:
31 // destructor thunk
32 // NOLINTBEGIN
33
34 // NOLINTEND
35
36public:
37 // virtual function thunks
38 // NOLINTBEGIN
39 MCFOLD int $getVariant(::Block const& block) const;
40
41 MCAPI void $onRedstoneUpdate(::BlockSource& region, ::BlockPos const& pos, int strength, bool isFirstTime) const;
42 // NOLINTEND
43
44public:
45 // vftables
46 // NOLINTBEGIN
47 MCAPI static void** $vftable();
48 // NOLINTEND
49};
Definition BaseRailBlock.h:25
Definition BlockPos.h:18
Definition BlockSource.h:67
Definition Block.h:36
Definition PoweredRailBlock.h:15