LeviLamina
Loading...
Searching...
No Matches
WebBlock.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/optional_ref.h"
7#include "mc/world/level/block/BlockType.h"
8
9// auto generated forward declare list
10// clang-format off
11class AABB;
12class Block;
13class BlockPos;
14class Experiments;
17// clang-format on
18
19class WebBlock : public ::BlockType {
20public:
21 // virtual functions
22 // NOLINTBEGIN
23 virtual ::AABB getCollisionShape(
24 ::Block const&,
26 ::BlockPos const&,
28 ) const /*override*/;
29
30 virtual void _addHardCodedBlockComponents(::Experiments const& experiments) /*override*/;
31
32 virtual ~WebBlock() /*override*/ = default;
33 // NOLINTEND
34
35public:
36 // virtual function thunks
37 // NOLINTBEGIN
38 MCFOLD ::AABB $getCollisionShape(
39 ::Block const&,
41 ::BlockPos const&,
43 ) const;
44
45 MCFOLD void $_addHardCodedBlockComponents(::Experiments const& experiments);
46
47
48 // NOLINTEND
49
50public:
51 // vftables
52 // NOLINTBEGIN
53 MCAPI static void** $vftable();
54 // NOLINTEND
55};
Definition AABB.h:18
Definition BlockPos.h:19
Definition Block.h:43
Definition Experiments.h:14
Definition GetCollisionShapeInterface.h:13
Definition IConstBlockSource.h:25
Definition WebBlock.h:19
Definition optional_ref.h:10