LeviLamina
Loading...
Searching...
No Matches
BlockIsValidSpawnEvent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/block/block_events/BlockEventBase.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
24 // NOLINTEND
25
26public:
27 // prevent constructor by default
31
32public:
33 // virtual functions
34 // NOLINTBEGIN
35 // vIndex: 1
36 virtual ::Block const& getBlock() const /*override*/;
37
38 // vIndex: 2
39 virtual ::BlockSource const& getBlockSource() const /*override*/;
40
41 // vIndex: 0
42 virtual ~BlockIsValidSpawnEvent() /*override*/;
43 // NOLINTEND
44
45public:
46 // destructor thunk
47 // NOLINTBEGIN
48 MCFOLD void $dtor();
49 // NOLINTEND
50
51public:
52 // virtual function thunks
53 // NOLINTBEGIN
54 MCFOLD ::Block const& $getBlock() const;
55
56 MCFOLD ::BlockSource const& $getBlockSource() const;
57 // NOLINTEND
58
59public:
60 // vftables
61 // NOLINTBEGIN
62 MCAPI static void** $vftable();
63 // NOLINTEND
64};
65
66} // namespace BlockEvents
Definition BlockEventBase.h:13
Definition BlockIsValidSpawnEvent.h:16
Definition BlockSource.h:67
Definition Block.h:36
Definition Alias.h:14