LeviLamina
Loading...
Searching...
No Matches
ScriptPlayerPlaceBlockBeforeEvent.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 Dimension;
13class Player;
14class Vec3;
15namespace Scripting { class WeakLifetimeScope; }
16namespace Scripting { struct ClassBinding; }
17// clang-format on
18
19namespace ScriptModuleMinecraft {
20
22public:
23 // member variables
24 // NOLINTBEGIN
30 // NOLINTEND
31
32public:
33 // prevent constructor by default
36
37public:
38 // member functions
39 // NOLINTBEGIN
41
43
45 ::Player const& player,
46 ::Dimension& dimension,
47 ::BlockPos const& pos,
48 uchar face,
49 ::Vec3 const& faceLocation,
50 ::Block const& permutationToPlace,
52 );
53
55 // NOLINTEND
56
57public:
58 // static functions
59 // NOLINTBEGIN
60 MCNAPI static ::Scripting::ClassBinding bind();
61 // NOLINTEND
62
63public:
64 // constructor thunks
65 // NOLINTBEGIN
67
69
70 MCNAPI void* $ctor(
71 ::Player const& player,
72 ::Dimension& dimension,
73 ::BlockPos const& pos,
74 uchar face,
75 ::Vec3 const& faceLocation,
76 ::Block const& permutationToPlace,
78 );
79 // NOLINTEND
80
81public:
82 // destructor thunk
83 // NOLINTBEGIN
84 MCNAPI void $dtor();
85 // NOLINTEND
86};
87
88} // namespace ScriptModuleMinecraft
Definition BlockPos.h:18
Definition Block.h:38
Definition Dimension.h:83
Definition Player.h:119
Definition WeakLifetimeScope.h:12
Definition Vec3.h:10
Definition ScriptBlockEvent.h:12
Definition ScriptPlayerPlaceBlockBeforeEvent.h:21
MCAPI void * $ctor(::Player const &player, ::Dimension &dimension, ::BlockPos const &pos, uchar face, ::Vec3 const &faceLocation, ::Block const &permutationToPlace, ::Scripting::WeakLifetimeScope const &scope)
MCAPI ScriptPlayerPlaceBlockBeforeEvent(::ScriptModuleMinecraft::ScriptPlayerPlaceBlockBeforeEvent const &)
MCAPI void * $ctor(::ScriptModuleMinecraft::ScriptPlayerPlaceBlockBeforeEvent const &)
static MCAPI ::Scripting::ClassBinding bind()
MCAPI ScriptPlayerPlaceBlockBeforeEvent(::Player const &player, ::Dimension &dimension, ::BlockPos const &pos, uchar face, ::Vec3 const &faceLocation, ::Block const &permutationToPlace, ::Scripting::WeakLifetimeScope const &scope)
MCAPI void * $ctor(::ScriptModuleMinecraft::ScriptPlayerPlaceBlockBeforeEvent &&)
MCAPI ScriptPlayerPlaceBlockBeforeEvent(::ScriptModuleMinecraft::ScriptPlayerPlaceBlockBeforeEvent &&)
Definition Alias.h:14