LeviLamina
Loading...
Searching...
No Matches
PressurePlateBlock.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/block/BasePressurePlateBlock.h"
7
8// auto generated forward declare list
9// clang-format off
10class BlockPos;
11class BlockSource;
12// clang-format on
13
15public:
16 // PressurePlateBlock inner types define
17 enum class Sensitivity : int {
18 Everything = 0,
19 Mobs = 1,
20 Players = 2,
21 };
22
23public:
24 // member variables
25 // NOLINTBEGIN
26 ::ll::TypedStorage<4, 4, ::PressurePlateBlock::Sensitivity> mSensitivity;
27 // NOLINTEND
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 // vIndex: 151
33 virtual int getSignalStrength(::BlockSource& region, ::BlockPos const& pos) const /*override*/;
34
35 // vIndex: 152
36 virtual int getSignalForData(int data) const /*override*/;
37
38 // vIndex: 153
39 virtual int getRedstoneSignal(int signal) const /*override*/;
40
41 // vIndex: 0
42 virtual ~PressurePlateBlock() /*override*/ = default;
43 // NOLINTEND
44
45public:
46 // destructor thunk
47 // NOLINTBEGIN
48
49 // NOLINTEND
50
51public:
52 // virtual function thunks
53 // NOLINTBEGIN
54 MCAPI int $getSignalStrength(::BlockSource& region, ::BlockPos const& pos) const;
55
56 MCAPI int $getSignalForData(int data) const;
57
58 MCAPI int $getRedstoneSignal(int signal) const;
59 // NOLINTEND
60
61public:
62 // vftables
63 // NOLINTBEGIN
64 MCAPI static void** $vftable();
65 // NOLINTEND
66};
Definition BasePressurePlateBlock.h:24
Definition BlockPos.h:18
Definition BlockSource.h:67
Definition PressurePlateBlock.h:14