LeviLamina
Loading...
Searching...
No Matches
BlockEventBase.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class Block;
8class BlockSource;
9// clang-format on
10
11namespace BlockEvents {
12
14public:
15 // member variables
16 // NOLINTBEGIN
18 // NOLINTEND
19
20public:
21 // prevent constructor by default
22 BlockEventBase& operator=(BlockEventBase const&);
25
26public:
27 // virtual functions
28 // NOLINTBEGIN
29 // vIndex: 0
30 virtual ~BlockEventBase() = default;
31
32 // vIndex: 1
33 virtual ::Block const& getBlock() const;
34
35 // vIndex: 2
36 virtual ::BlockSource const& getBlockSource() const = 0;
37 // NOLINTEND
38
39public:
40 // destructor thunk
41 // NOLINTBEGIN
42
43 // NOLINTEND
44
45public:
46 // virtual function thunks
47 // NOLINTBEGIN
48 MCAPI ::Block const& $getBlock() const;
49 // NOLINTEND
50
51public:
52 // vftables
53 // NOLINTBEGIN
54 MCAPI static void** $vftable();
55 // NOLINTEND
56};
57
58} // namespace BlockEvents
Definition BlockEventBase.h:13
Definition BlockSource.h:67
Definition Block.h:36
Definition Alias.h:14