LeviLamina
Loading...
Searching...
No Matches
ScriptBlockCustomComponentAfterEventIntermediateStorage.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/scripting/modules/minecraft/events/ScriptCustomComponentToExecute.h"
7#include "mc/world/level/BlockPos.h"
8
9// auto generated forward declare list
10// clang-format off
11class Block;
12class BlockSource;
13namespace ScriptModuleMinecraft { class ScriptBlockCustomComponentInterface; }
14// clang-format on
15
16namespace ScriptModuleMinecraft {
17
18struct ScriptBlockCustomComponentAfterEventIntermediateStorage {
19public:
20 // member variables
21 // NOLINTBEGIN
22 ::ll::TypedStorage<8, 8, ::Block const&> mBlock;
23 ::ll::TypedStorage<4, 12, ::BlockPos const> mPos;
24 ::ll::TypedStorage<8, 8, ::BlockSource const&> mRegion;
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
29 ScriptBlockCustomComponentAfterEventIntermediateStorage&
30 operator=(ScriptBlockCustomComponentAfterEventIntermediateStorage const&);
31 ScriptBlockCustomComponentAfterEventIntermediateStorage(
32 ScriptBlockCustomComponentAfterEventIntermediateStorage const&
33 );
34 ScriptBlockCustomComponentAfterEventIntermediateStorage();
35
36public:
37 // member functions
38 // NOLINTBEGIN
41 void>>
42 tryGetComponentsToExecute() const;
43 // NOLINTEND
44
45public:
46 // static functions
47 // NOLINTBEGIN
48#ifdef LL_PLAT_S
51 void>> tryGetComponentsToExecute(::Block const& block);
52#endif
53 // NOLINTEND
54};
55
56} // namespace ScriptModuleMinecraft
Definition BlockSource.h:73
Definition Block.h:69
Definition ScriptBlockCustomComponentInterface.h:10
Definition ScriptCustomComponentToExecute.h:8