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;
13class Player;
14// clang-format on
15
16namespace ScriptModuleMinecraft {
17
18struct ScriptPlayerPlaceBlockAfterEventIntermediateData {
19public:
20 // member variables
21 // NOLINTBEGIN
22 ::ll::TypedStorage<8, 8, ::Dimension&> mDimension;
23 ::ll::TypedStorage<8, 96, ::ScriptModuleMinecraft::ScriptActorData> mPlayer;
24 ::ll::TypedStorage<4, 12, ::BlockPos const> mPos;
25 ::ll::TypedStorage<8, 8, ::Block const&> mPlacedBlock;
26 // NOLINTEND
27
28public:
29 // prevent constructor by default
30 ScriptPlayerPlaceBlockAfterEventIntermediateData&
31 operator=(ScriptPlayerPlaceBlockAfterEventIntermediateData const&);
32 ScriptPlayerPlaceBlockAfterEventIntermediateData(ScriptPlayerPlaceBlockAfterEventIntermediateData const&);
33 ScriptPlayerPlaceBlockAfterEventIntermediateData();
34
35public:
36 // member functions
37 // NOLINTBEGIN
38 MCAPI ScriptPlayerPlaceBlockAfterEventIntermediateData(
39 ::Player& player,
40 ::BlockPos const& blockPos,
41 ::Block const& placedBlock
42 );
43 // NOLINTEND
44
45public:
46 // constructor thunks
47 // NOLINTBEGIN
48 MCAPI void* $ctor(::Player& player, ::BlockPos const& blockPos, ::Block const& placedBlock);
49 // NOLINTEND
50};
51
52} // namespace ScriptModuleMinecraft
Definition BlockPos.h:19
Definition Block.h:43
Definition Dimension.h:85
Definition Player.h:125