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 virtual ~BlockEventBase() = default;
27
28 virtual ::Block const& getBlock() const;
29
30 virtual ::BlockSource const& getBlockSource() const = 0;
31 // NOLINTEND
32
33public:
34 // virtual function thunks
35 // NOLINTBEGIN
36 MCAPI ::Block const& $getBlock() const;
37
38
39 // NOLINTEND
40
41public:
42 // vftables
43 // NOLINTBEGIN
44 MCNAPI static void** $vftable();
45 // NOLINTEND
46};
47
48} // namespace BlockEvents
Definition BlockEventBase.h:16
static MCAPI void ** $vftable()
Definition BlockSource.h:68
Definition Block.h:43