LeviLamina
Loading...
Searching...
No Matches
ScriptLeverActionAfterEventIntermediateData.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 Dimension;
12class Player;
13struct LeverActionEvent;
14// clang-format on
15
16namespace ScriptModuleMinecraft {
17
18struct ScriptLeverActionAfterEventIntermediateData {
19public:
20 // member variables
21 // NOLINTBEGIN
22 ::ll::TypedStorage<8, 8, ::Dimension&> mDimension;
23 ::ll::TypedStorage<4, 12, ::BlockPos> mPos;
24 ::ll::TypedStorage<8, 104, ::std::optional<::ScriptModuleMinecraft::ScriptActorData>> mPlayer;
25 ::ll::TypedStorage<1, 1, bool> mIsPowered;
26 // NOLINTEND
27
28public:
29 // prevent constructor by default
30 ScriptLeverActionAfterEventIntermediateData& operator=(ScriptLeverActionAfterEventIntermediateData const&);
31 ScriptLeverActionAfterEventIntermediateData(ScriptLeverActionAfterEventIntermediateData const&);
32 ScriptLeverActionAfterEventIntermediateData();
33
34public:
35 // member functions
36 // NOLINTBEGIN
37 MCAPI ScriptLeverActionAfterEventIntermediateData(::LeverActionEvent const& eventData, ::Player const* player);
38 // NOLINTEND
39
40public:
41 // constructor thunks
42 // NOLINTBEGIN
43 MCAPI void* $ctor(::LeverActionEvent const& eventData, ::Player const* player);
44 // NOLINTEND
45};
46
47} // namespace ScriptModuleMinecraft
Definition Dimension.h:85
Definition Player.h:125
Definition LeverActionEvent.h:14