LeviLamina
Loading...
Searching...
No Matches
BuddingAmethystBlock.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/block/AmethystBlock.h"
7
8// auto generated forward declare list
9// clang-format off
10class Block;
11class BlockActor;
12class Experiments;
13class ItemInstance;
14namespace BlockEvents { class BlockRandomTickEvent; }
15// clang-format on
16
18public:
19 // virtual functions
20 // NOLINTBEGIN
21 virtual ::ItemInstance asItemInstance(::Block const&, ::BlockActor const*) const /*override*/;
22
23 virtual bool isSilentWhenJumpingOff() const /*override*/;
24
25 virtual void _addHardCodedBlockComponents(::Experiments const&) /*override*/;
26
27 virtual ~BuddingAmethystBlock() /*override*/ = default;
28 // NOLINTEND
29
30public:
31 // member functions
32 // NOLINTBEGIN
33 MCAPI void randomTick(::BlockEvents::BlockRandomTickEvent& eventData) const;
34 // NOLINTEND
35
36public:
37 // virtual function thunks
38 // NOLINTBEGIN
39 MCAPI ::ItemInstance $asItemInstance(::Block const&, ::BlockActor const*) const;
40
41 MCFOLD bool $isSilentWhenJumpingOff() const;
42
43 MCAPI void $_addHardCodedBlockComponents(::Experiments const&);
44
45
46 // NOLINTEND
47
48public:
49 // vftables
50 // NOLINTBEGIN
51 MCNAPI static void** $vftable();
52 // NOLINTEND
53};
Definition AmethystBlock.h:15
Definition BlockActor.h:32
Definition BlockRandomTickEvent.h:16
Definition Block.h:43
Definition BuddingAmethystBlock.h:17
static MCAPI void ** $vftable()
Definition Experiments.h:14
Definition ItemInstance.h:15