LeviLamina
Loading...
Searching...
No Matches
BlockPlayerPlacingEvent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/block/block_events/BlockCancellableEventBase.h"
7
8// auto generated forward declare list
9// clang-format off
10class Actor;
11class Block;
12class BlockSource;
13class Item;
14// clang-format on
15
16namespace BlockEvents {
17
19public:
20 // member variables
21 // NOLINTBEGIN
22 ::ll::TypedStorage<8, 8, ::BlockSource&> mRegion;
23 ::ll::TypedStorage<8, 8, ::Actor&> mActor;
24 ::ll::TypedStorage<8, 8, ::gsl::not_null<::Block const*>> mPermutationToPlace;
25 ::ll::TypedStorage<8, 8, ::Item const&> mItem;
26 ::ll::TypedStorage<1, 1, uchar const> mFace;
27 // NOLINTEND
28
29public:
30 // prevent constructor by default
34
35public:
36 // virtual functions
37 // NOLINTBEGIN
38 // vIndex: 2
39 virtual ::BlockSource const& getBlockSource() const /*override*/;
40
41 // vIndex: 0
42 virtual ~BlockPlayerPlacingEvent() /*override*/;
43 // NOLINTEND
44
45public:
46 // member functions
47 // NOLINTBEGIN
48 MCFOLD ::Block const& getPermutationToPlace() const;
49
50 MCAPI void setPermutationToPlace(::Block const& perm);
51 // NOLINTEND
52
53public:
54 // destructor thunk
55 // NOLINTBEGIN
56 MCFOLD void $dtor();
57 // NOLINTEND
58
59public:
60 // virtual function thunks
61 // NOLINTBEGIN
62 MCFOLD ::BlockSource const& $getBlockSource() const;
63 // NOLINTEND
64
65public:
66 // vftables
67 // NOLINTBEGIN
68 MCNAPI static void** $vftable();
69 // NOLINTEND
70};
71
72} // namespace BlockEvents
Definition Actor.h:103
Definition BlockCancellableEventBase.h:10
Definition BlockPlayerPlacingEvent.h:18
static MCAPI void ** $vftable()
Definition BlockSource.h:67
Definition Block.h:38
Definition Item.h:65