LeviLamina
Loading...
Searching...
No Matches
BlockEventBase.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/BlockPos.h"
7
8// auto generated forward declare list
9// clang-format off
10class Block;
11class BlockSource;
12// clang-format on
13
14namespace BlockEvents {
15
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<4, 12, ::BlockPos const> mPos;
21 // NOLINTEND
22
23public:
24 // virtual functions
25 // NOLINTBEGIN
26 // vIndex: 0
27 virtual ~BlockEventBase() = default;
28
29 // vIndex: 1
30 virtual ::Block const& getBlock() const;
31
32 // vIndex: 2
33 virtual ::BlockSource const& getBlockSource() const = 0;
34 // NOLINTEND
35
36public:
37 // virtual function thunks
38 // NOLINTBEGIN
39 MCAPI ::Block const& $getBlock() const;
40 // NOLINTEND
41
42public:
43 // vftables
44 // NOLINTBEGIN
45 MCNAPI static void** $vftable();
46 // NOLINTEND
47};
48
49} // namespace BlockEvents
Definition BlockEventBase.h:16
static MCAPI void ** $vftable()
Definition BlockSource.h:67
Definition Block.h:38