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