LeviLamina
Loading...
Searching...
No Matches
SlimeBlock.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 BlockPos;
11class EntityContext;
12class Experiments;
14namespace BlockEvents { class BlockEntityFallOnEvent; }
15// clang-format on
16
17class SlimeBlock : public ::BlockLegacy {
18public:
19 // virtual functions
20 // NOLINTBEGIN
21 // vIndex: 131
22 virtual void _addHardCodedBlockComponents(::Experiments const&) /*override*/;
23
24 // vIndex: 134
25 virtual void onStandOn(::EntityContext& entity, ::BlockPos const& pos) const /*override*/;
26
27 // vIndex: 68
28 virtual void updateEntityAfterFallOn(::BlockPos const& pos, ::UpdateEntityAfterFallOnInterface& entity) const
29 /*override*/;
30
31 // vIndex: 69
32 virtual bool isBounceBlock() const /*override*/;
33
34 // vIndex: 144
35 virtual int getExtraRenderLayers() const /*override*/;
36
37 // vIndex: 0
38 virtual ~SlimeBlock() /*override*/ = default;
39 // NOLINTEND
40
41public:
42 // member functions
43 // NOLINTBEGIN
44 MCFOLD void onFallOn(::BlockEvents::BlockEntityFallOnEvent& eventData) const;
45 // NOLINTEND
46
47public:
48 // destructor thunk
49 // NOLINTBEGIN
50
51 // NOLINTEND
52
53public:
54 // virtual function thunks
55 // NOLINTBEGIN
56 MCAPI void $_addHardCodedBlockComponents(::Experiments const&);
57
58 MCFOLD void $onStandOn(::EntityContext& entity, ::BlockPos const& pos) const;
59
60 MCAPI void $updateEntityAfterFallOn(::BlockPos const& pos, ::UpdateEntityAfterFallOnInterface& entity) const;
61
62 MCFOLD bool $isBounceBlock() const;
63
64 MCFOLD int $getExtraRenderLayers() const;
65 // NOLINTEND
66
67public:
68 // vftables
69 // NOLINTBEGIN
70 MCAPI static void** $vftable();
71 // NOLINTEND
72};
Definition BlockEntityFallOnEvent.h:15
Definition BlockLegacy.h:88
Definition BlockPos.h:18
Definition EntityContext.h:16
Definition Experiments.h:14
Definition SlimeBlock.h:17
Definition UpdateEntityAfterFallOnInterface.h:13