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#include "mc/world/level/block/BlockType.h"
8
9// auto generated forward declare list
10// clang-format off
11class Block;
12class BlockPos;
13class BlockSource;
14class Material;
15class Random;
16namespace BlockEvents { class BlockQueuedTickEvent; }
17// clang-format on
18
19class SculkCatalystBlock : public ::ActorBlock {
20public:
21 // prevent constructor by default
22 SculkCatalystBlock();
23
24public:
25 // virtual functions
26 // NOLINTBEGIN
27 virtual int getVariant(::Block const& block) const /*override*/;
28 // NOLINTEND
29
30public:
31 // member functions
32 // NOLINTBEGIN
33 MCAPI SculkCatalystBlock(::std::string const& nameId, int id, ::Material const& material);
34
35 MCAPI void tick(::BlockEvents::BlockQueuedTickEvent& eventData) const;
36 // NOLINTEND
37
38public:
39 // static functions
40 // NOLINTBEGIN
41 MCAPI static void bloom(::BlockSource& region, ::BlockPos const& pos, ::Block const& block, ::Random&);
42 // NOLINTEND
43
44public:
45 // constructor thunks
46 // NOLINTBEGIN
47 MCAPI void* $ctor(::std::string const& nameId, int id, ::Material const& material);
48 // NOLINTEND
49
50public:
51 // virtual function thunks
52 // NOLINTBEGIN
53 MCAPI int $getVariant(::Block const& block) const;
54
55
56 // NOLINTEND
57
58public:
59 // vftables
60 // NOLINTBEGIN
61 MCAPI static void** $vftable();
62 // NOLINTEND
63};
Definition BlockQueuedTickEvent.h:18
Definition BlockPos.h:21
Definition BlockSource.h:73
Definition Block.h:69
Definition Material.h:8
Definition Random.h:10