LeviLamina
Loading...
Searching...
No Matches
DriedGhastBlock.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/block/BlockType.h"
7
8// auto generated forward declare list
9// clang-format off
10class Block;
11class BlockPos;
12class BlockSource;
14namespace BlockEvents { class BlockPlaceEvent; }
15namespace BlockEvents { class BlockQueuedTickEvent; }
16// clang-format on
17
18class DriedGhastBlock : public ::BlockType {
19public:
20 // prevent constructor by default
21 DriedGhastBlock();
22
23public:
24 // virtual functions
25 // NOLINTBEGIN
26 virtual void onRemove(::BlockSource& region, ::BlockPos const& position) const /*override*/;
27
28 virtual void animateTick(::BlockAnimateTickData const& tickData) const /*override*/;
29
30 virtual int getVariant(::Block const& block) const /*override*/;
31 // NOLINTEND
32
33public:
34 // member functions
35 // NOLINTBEGIN
36 MCAPI DriedGhastBlock(::std::string const& nameId, int id);
37
38 MCAPI void onPlace(::BlockEvents::BlockPlaceEvent& eventData) const;
39
40 MCAPI void tick(::BlockEvents::BlockQueuedTickEvent& eventData) const;
41 // NOLINTEND
42
43public:
44 // constructor thunks
45 // NOLINTBEGIN
46 MCAPI void* $ctor(::std::string const& nameId, int id);
47 // NOLINTEND
48
49public:
50 // virtual function thunks
51 // NOLINTBEGIN
52 MCAPI void $onRemove(::BlockSource& region, ::BlockPos const& position) const;
53
54 MCAPI void $animateTick(::BlockAnimateTickData const& tickData) const;
55
56 MCAPI int $getVariant(::Block const& block) const;
57
58
59 // NOLINTEND
60
61public:
62 // vftables
63 // NOLINTBEGIN
64 MCAPI static void** $vftable();
65 // NOLINTEND
66};
Definition BlockPlaceEvent.h:18
Definition BlockQueuedTickEvent.h:18
Definition BlockPos.h:21
Definition BlockSource.h:73
Definition Block.h:69
Definition BlockAnimateTickData.h:14