LeviLamina
Loading...
Searching...
No Matches
ScriptPlayerBreakBlockAfterEvent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/scripting/modules/minecraft/events/ScriptBlockEvent.h"
7
8// auto generated forward declare list
9// clang-format off
10class Block;
11class BlockPos;
12class ItemStackBase;
13class Player;
14namespace Scripting { class WeakLifetimeScope; }
15namespace Scripting { struct ClassBinding; }
16// clang-format on
17
18namespace ScriptModuleMinecraft {
19
21public:
22 // member variables
23 // NOLINTBEGIN
28 // NOLINTEND
29
30public:
31 // prevent constructor by default
34
35public:
36 // member functions
37 // NOLINTBEGIN
39
41
43 ::Player& player,
44 ::BlockPos const& pos,
45 ::Block const& destroyedBlock,
46 ::ItemStackBase const& afterBreakItem,
47 ::ItemStackBase const& beforeBreakItem,
49 );
50
52 // NOLINTEND
53
54public:
55 // static functions
56 // NOLINTBEGIN
57 MCNAPI static ::Scripting::ClassBinding bind();
58 // NOLINTEND
59
60public:
61 // constructor thunks
62 // NOLINTBEGIN
64
66
67 MCNAPI void* $ctor(
68 ::Player& player,
69 ::BlockPos const& pos,
70 ::Block const& destroyedBlock,
71 ::ItemStackBase const& afterBreakItem,
72 ::ItemStackBase const& beforeBreakItem,
74 );
75 // NOLINTEND
76
77public:
78 // destructor thunk
79 // NOLINTBEGIN
80 MCNAPI void $dtor();
81 // NOLINTEND
82};
83
84} // namespace ScriptModuleMinecraft
Definition BlockPos.h:18
Definition Block.h:38
Definition ItemStackBase.h:35
Definition Player.h:119
Definition WeakLifetimeScope.h:12
Definition ScriptBlockEvent.h:12
Definition ScriptPlayerBreakBlockAfterEvent.h:20
static MCAPI ::Scripting::ClassBinding bind()
MCAPI void * $ctor(::Player &player, ::BlockPos const &pos, ::Block const &destroyedBlock, ::ItemStackBase const &afterBreakItem, ::ItemStackBase const &beforeBreakItem, ::Scripting::WeakLifetimeScope const &scope)
MCAPI void * $ctor(::ScriptModuleMinecraft::ScriptPlayerBreakBlockAfterEvent &&)
MCAPI ScriptPlayerBreakBlockAfterEvent(::ScriptModuleMinecraft::ScriptPlayerBreakBlockAfterEvent const &)
MCAPI void * $ctor(::ScriptModuleMinecraft::ScriptPlayerBreakBlockAfterEvent const &)
MCAPI ScriptPlayerBreakBlockAfterEvent(::Player &player, ::BlockPos const &pos, ::Block const &destroyedBlock, ::ItemStackBase const &afterBreakItem, ::ItemStackBase const &beforeBreakItem, ::Scripting::WeakLifetimeScope const &scope)
MCAPI ScriptPlayerBreakBlockAfterEvent(::ScriptModuleMinecraft::ScriptPlayerBreakBlockAfterEvent &&)
Definition Alias.h:14