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/deps/scripting/binding_type/ClassBindingBuilder.h"
7#include "mc/scripting/modules/minecraft/events/ScriptBlockEvent.h"
8
9// auto generated forward declare list
10// clang-format off
11class Block;
12class BlockPos;
13class ItemStackBase;
14class Player;
15namespace Scripting { class WeakLifetimeScope; }
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 MCAPI static ::Scripting::ClassBindingBuilder<::ScriptModuleMinecraft::ScriptPlayerBreakBlockAfterEvent> bind();
58 // NOLINTEND
59
60public:
61 // constructor thunks
62 // NOLINTBEGIN
64
66
67 MCAPI 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 MCAPI void $dtor();
81 // NOLINTEND
82};
83
84} // namespace ScriptModuleMinecraft
Definition BlockPos.h:18
Definition Block.h:36
Definition ItemStackBase.h:35
Definition Player.h:119
Definition WeakLifetimeScope.h:12
Definition ScriptBlockEvent.h:10
Definition ScriptPlayerBreakBlockAfterEvent.h:20
Definition Alias.h:14