LeviLamina
Loading...
Searching...
No Matches
ScriptPlayerPlaceBlockAfterEventIntermediateData.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/level/BlockPos.h"
8
9// auto generated forward declare list
10// clang-format off
11class Block;
12class Dimension;
13// clang-format on
14
15namespace ScriptModuleMinecraft {
16
17struct ScriptPlayerPlaceBlockAfterEventIntermediateData {
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<8, 8, ::Dimension&> mDimension;
22 ::ll::TypedStorage<8, 96, ::ScriptModuleMinecraft::ScriptActorData> mPlayer;
23 ::ll::TypedStorage<4, 12, ::BlockPos const> mPos;
24 ::ll::TypedStorage<8, 8, ::Block const&> mPlacedBlock;
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
29 ScriptPlayerPlaceBlockAfterEventIntermediateData&
30 operator=(ScriptPlayerPlaceBlockAfterEventIntermediateData const&);
31 ScriptPlayerPlaceBlockAfterEventIntermediateData(ScriptPlayerPlaceBlockAfterEventIntermediateData const&);
32 ScriptPlayerPlaceBlockAfterEventIntermediateData();
33};
34
35} // namespace ScriptModuleMinecraft
Definition Block.h:69
Definition Dimension.h:89