LeviLamina
Loading...
Searching...
No Matches
FossilFeature.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/block/BlockDescriptor.h"
7#include "mc/world/level/levelgen/feature/Feature.h"
8
9// auto generated forward declare list
10// clang-format off
11class BlockPos;
12class BlockSource;
13class BoundingBox;
14class Random;
15// clang-format on
16
17class FossilFeature : public ::Feature {
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<8, 176, ::BlockDescriptor> mOreBlockDescriptor;
22 ::ll::TypedStorage<4, 4, int> mMaxEmptyCorners;
23 // NOLINTEND
24
25public:
26 // virtual functions
27 // NOLINTBEGIN
28 virtual bool place(::BlockSource& region, ::BlockPos const& origin, ::Random& random) const /*override*/;
29 // NOLINTEND
30
31public:
32 // static functions
33 // NOLINTBEGIN
34 MCAPI static uint64 _countEmptyCorners(::BlockSource const& region, ::BoundingBox const& boundingBox);
35
36 MCFOLD static bool _overlapsWithStructureFeature(::BlockSource const& region, ::BlockPos const& pos);
37 // NOLINTEND
38
39public:
40 // static variables
41 // NOLINTBEGIN
42 MCAPI static ::std::add_lvalue_reference_t<::std::string const[]> STRUCTURE_LOCATION_FOSSIL();
43 // NOLINTEND
44
45public:
46 // virtual function thunks
47 // NOLINTBEGIN
48 MCAPI bool $place(::BlockSource& region, ::BlockPos const& origin, ::Random& random) const;
49
50
51 // NOLINTEND
52
53public:
54 // vftables
55 // NOLINTBEGIN
56 MCNAPI static void** $vftable();
57 // NOLINTEND
58};
Definition BlockPos.h:21
Definition BlockSource.h:73
Definition BoundingBox.h:13
Definition FossilFeature.h:17
static MCAPI void ** $vftable()
Definition Random.h:10