LeviLamina
Loading...
Searching...
No Matches
AmethystBlock.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/block/BlockLegacy.h"
7
8// auto generated forward declare list
9// clang-format off
10class Actor;
11class BlockPos;
12class BlockSource;
13// clang-format on
14
16public:
17 // virtual functions
18 // NOLINTBEGIN
19 // vIndex: 16
20 virtual void onProjectileHit(::BlockSource& region, ::BlockPos const& pos, ::Actor const&) const /*override*/;
21
22 // vIndex: 46
23 virtual bool isSilentWhenJumpingOff() const /*override*/;
24
25 // vIndex: 0
26 virtual ~AmethystBlock() /*override*/ = default;
27 // NOLINTEND
28
29public:
30 // virtual function thunks
31 // NOLINTBEGIN
32 MCAPI void $onProjectileHit(::BlockSource& region, ::BlockPos const& pos, ::Actor const&) const;
33
34 MCFOLD bool $isSilentWhenJumpingOff() const;
35 // NOLINTEND
36
37public:
38 // vftables
39 // NOLINTBEGIN
40 MCNAPI static void** $vftable();
41 // NOLINTEND
42};
Definition Actor.h:103
Definition AmethystBlock.h:15
static MCAPI void ** $vftable()
Definition BlockLegacy.h:88
Definition BlockPos.h:18
Definition BlockSource.h:67