LeviLamina
Loading...
Searching...
No Matches
SculkCatalystBlock.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/block/ActorBlockBase.h"
7
8// auto generated forward declare list
9// clang-format off
10class Block;
11class BlockLegacy;
12class BlockPos;
13class BlockSource;
14class Experiments;
15class Random;
16namespace BlockEvents { class BlockQueuedTickEvent; }
17// clang-format on
18
20public:
21 // virtual functions
22 // NOLINTBEGIN
23 // vIndex: 118
24 virtual int getVariant(::Block const& block) const /*override*/;
25
26 // vIndex: 131
27 virtual void _addHardCodedBlockComponents(::Experiments const&) /*override*/;
28
29 // vIndex: 0
30 virtual ~SculkCatalystBlock() /*override*/ = default;
31 // NOLINTEND
32
33public:
34 // member functions
35 // NOLINTBEGIN
36 MCAPI void tick(::BlockEvents::BlockQueuedTickEvent& eventData) const;
37 // NOLINTEND
38
39public:
40 // static functions
41 // NOLINTBEGIN
42 MCAPI static void bloom(::BlockSource& region, ::BlockPos const& pos, ::Block const& block, ::Random&);
43 // NOLINTEND
44
45public:
46 // destructor thunk
47 // NOLINTBEGIN
48
49 // NOLINTEND
50
51public:
52 // virtual function thunks
53 // NOLINTBEGIN
54 MCAPI int $getVariant(::Block const& block) const;
55
56 MCAPI void $_addHardCodedBlockComponents(::Experiments const&);
57 // NOLINTEND
58
59public:
60 // vftables
61 // NOLINTBEGIN
62 MCAPI static void** $vftable();
63 // NOLINTEND
64};
Definition ActorBlockBase.h:6
Definition BlockQueuedTickEvent.h:15
Definition BlockLegacy.h:88
Definition BlockPos.h:18
Definition BlockSource.h:67
Definition Block.h:36
Definition Experiments.h:14
Definition Random.h:16
Definition SculkCatalystBlock.h:19