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 // prevent constructor by default
22 WebBlock();
23
24public:
25 // virtual functions
26 // NOLINTBEGIN
27 virtual ::AABB getCollisionShape(
28 ::Block const&,
30 ::BlockPos const&,
32 ) const /*override*/;
33
34 virtual void _addHardCodedBlockComponents(::Experiments const& experiments) /*override*/;
35 // NOLINTEND
36
37public:
38 // member functions
39 // NOLINTBEGIN
40 MCAPI WebBlock(::std::string const& nameId, int id);
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 MCFOLD ::AABB $getCollisionShape(
53 ::Block const&,
55 ::BlockPos const&,
57 ) const;
58
59 MCAPI void $_addHardCodedBlockComponents(::Experiments const& experiments);
60
61
62 // NOLINTEND
63
64public:
65 // vftables
66 // NOLINTBEGIN
67 MCAPI static void** $vftable();
68 // NOLINTEND
69};
Definition AABB.h:18
Definition BlockPos.h:21
Definition Block.h:69
Definition Experiments.h:14
Definition GetCollisionShapeInterface.h:13
Definition IConstBlockSource.h:24
Definition optional_ref.h:10