LeviLamina
Loading...
Searching...
No Matches
BlockEventManager.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/block/block_events/EventType.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace BlockEvents { class IBlockEventExecutor; }
11// clang-format on
12
13namespace BlockEvents {
14
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<1, 1, bool> mFinalized;
20 ::ll::TypedStorage<8, 24, ::std::vector<::std::unique_ptr<::BlockEvents::IBlockEventExecutor>>> mEventExecutors;
21 // NOLINTEND
22
23public:
24 // member functions
25 // NOLINTBEGIN
26 MCAPI ::std::unique_ptr<::BlockEvents::IBlockEventExecutor>
27 _createSpecializedExecutor(::BlockEvents::EventType type) const;
28
29 MCAPI ::BlockEvents::IBlockEventExecutor* _tryGetExecutor(::BlockEvents::EventType type) const;
30
31 MCFOLD void finalize();
32
33 MCAPI bool hasExecutor(::BlockEvents::EventType type) const;
34
35 MCAPI ~BlockEventManager();
36 // NOLINTEND
37
38public:
39 // destructor thunk
40 // NOLINTBEGIN
41 MCFOLD void $dtor();
42 // NOLINTEND
43};
44
45} // namespace BlockEvents
Definition BlockEventManager.h:15
Definition IBlockEventExecutor.h:10