LeviLamina
Loading...
Searching...
No Matches
ScriptPlayerBreakBlockAfterEventIntermediateData.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/scripting/modules/minecraft/actor/ScriptActorData.h"
7#include "mc/world/item/ItemInstance.h"
8#include "mc/world/level/BlockPos.h"
9
10// auto generated forward declare list
11// clang-format off
12class Block;
13class Dimension;
14// clang-format on
15
16namespace ScriptModuleMinecraft {
17
18struct ScriptPlayerBreakBlockAfterEventIntermediateData {
19public:
20 // member variables
21 // NOLINTBEGIN
22 ::ll::TypedStorage<8, 96, ::ScriptModuleMinecraft::ScriptActorData> mPlayer;
23 ::ll::TypedStorage<8, 8, ::Block const&> mDestroyedBlock;
24 ::ll::TypedStorage<4, 12, ::BlockPos const> mPos;
25 ::ll::TypedStorage<8, 8, ::Dimension&> mDimension;
26 ::ll::TypedStorage<8, 128, ::ItemInstance> mItemAfter;
27 ::ll::TypedStorage<8, 128, ::ItemInstance> mItemBefore;
28 // NOLINTEND
29
30public:
31 // prevent constructor by default
32 ScriptPlayerBreakBlockAfterEventIntermediateData&
33 operator=(ScriptPlayerBreakBlockAfterEventIntermediateData const&);
34 ScriptPlayerBreakBlockAfterEventIntermediateData(ScriptPlayerBreakBlockAfterEventIntermediateData const&);
35 ScriptPlayerBreakBlockAfterEventIntermediateData();
36};
37
38} // namespace ScriptModuleMinecraft
Definition Block.h:69
Definition Dimension.h:89