LeviLamina
Loading...
Searching...
No Matches
ScriptPlayerPlaceBlockAfterEvent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/scripting/lifetime_registry/StrongTypedObjectHandle.h"
7#include "mc/scripting/modules/minecraft/events/ScriptBlockEvent.h"
8
9// auto generated forward declare list
10// clang-format off
11class BlockPos;
12class Player;
13namespace ScriptModuleMinecraft { class ScriptPlayer; }
14namespace Scripting { class WeakLifetimeScope; }
15namespace Scripting { struct ClassBinding; }
16// clang-format on
17
18namespace ScriptModuleMinecraft {
19
21public:
22 // member variables
23 // NOLINTBEGIN
24 ::ll::TypedStorage<8, 32, ::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptPlayer>> mPlayer;
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
30
31public:
32 // member functions
33 // NOLINTBEGIN
35 ::Player& player,
36 ::BlockPos const& pos,
38 );
39 // NOLINTEND
40
41public:
42 // static functions
43 // NOLINTBEGIN
44 MCAPI static ::Scripting::ClassBinding bind();
45 // NOLINTEND
46
47public:
48 // constructor thunks
49 // NOLINTBEGIN
50 MCAPI void* $ctor(::Player& player, ::BlockPos const& pos, ::Scripting::WeakLifetimeScope const& scope);
51 // NOLINTEND
52};
53
54} // namespace ScriptModuleMinecraft
Definition BlockPos.h:17
Definition Player.h:123
Definition WeakLifetimeScope.h:7
Definition ScriptBlockEvent.h:17
Definition ScriptPlayerPlaceBlockAfterEvent.h:20