LeviLamina
Loading...
Searching...
No Matches
BlockQueuedTickEvent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/block/block_events/BlockEventBase.h"
7
8// auto generated forward declare list
9// clang-format off
10class BlockPos;
11class BlockSource;
12class Random;
13class RenderParams;
14// clang-format on
15
16namespace BlockEvents {
17
18class BlockQueuedTickEvent : public ::BlockEvents::BlockEventBase {
19public:
20 // member variables
21 // NOLINTBEGIN
22 ::ll::TypedStorage<1, 1, bool const> mIsInstaticking;
23 ::ll::TypedStorage<8, 8, ::BlockSource&> mRegion;
24 ::ll::TypedStorage<8, 8, ::Random&> mRandom;
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
29 BlockQueuedTickEvent& operator=(BlockQueuedTickEvent const&);
30 BlockQueuedTickEvent(BlockQueuedTickEvent const&);
31 BlockQueuedTickEvent();
32
33public:
34 // virtual functions
35 // NOLINTBEGIN
36 virtual ::BlockSource const& getBlockSource() const /*override*/;
37 // NOLINTEND
38
39public:
40 // member functions
41 // NOLINTBEGIN
42 MCAPI BlockQueuedTickEvent(::BlockSource& region, ::BlockPos pos, ::Random& random, bool isInstaticking);
43
44 MCFOLD void configureRenderParamsForTrigger(::RenderParams& params) const;
45
46 MCFOLD bool isClientSide() const;
47 // NOLINTEND
48
49public:
50 // constructor thunks
51 // NOLINTBEGIN
52 MCAPI void* $ctor(::BlockSource& region, ::BlockPos pos, ::Random& random, bool isInstaticking);
53 // NOLINTEND
54
55public:
56 // virtual function thunks
57 // NOLINTBEGIN
58 MCFOLD ::BlockSource const& $getBlockSource() const;
59
60
61 // NOLINTEND
62
63public:
64 // vftables
65 // NOLINTBEGIN
66 MCNAPI static void** $vftable();
67 // NOLINTEND
68};
69
70} // namespace BlockEvents
Definition BlockEventBase.h:16
static MCAPI void ** $vftable()
Definition BlockPos.h:21
Definition BlockSource.h:73
Definition Random.h:10
Definition RenderParams.h:30