LeviLamina
Loading...
Searching...
No Matches
NetherFossilFeature.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/levelgen/feature/Feature.h"
7
8// auto generated forward declare list
9// clang-format off
10class BlockPos;
11class BlockSource;
12class HashedString;
13class Random;
14// clang-format on
15
16class NetherFossilFeature : public ::Feature {
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<8, 24, ::std::vector<::HashedString>> mValidGroundBlocks;
21 ::ll::TypedStorage<1, 1, bool> mMayPlaceInLava;
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 NetherFossilFeature();
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 virtual bool place(::BlockSource& region, ::BlockPos const& origin, ::Random& random) const /*override*/;
32 // NOLINTEND
33
34public:
35 // member functions
36 // NOLINTBEGIN
37 MCAPI NetherFossilFeature(::std::vector<::HashedString>&& validGroundBlocks, bool mayPlaceInLava);
38
39 MCAPI void _tryPlaceDriedGhastBlock(
40 ::BlockSource& region,
41 ::BlockPos const& aabbMin,
42 ::BlockPos const& aabbMax,
43 int fossilHeight,
44 ::Random& random
45 ) const;
46 // NOLINTEND
47
48public:
49 // static variables
50 // NOLINTBEGIN
51 MCAPI static ::std::add_lvalue_reference_t<::std::string const[]> STRUCTURE_LOCATION_FOSSIL();
52 // NOLINTEND
53
54public:
55 // constructor thunks
56 // NOLINTBEGIN
57 MCAPI void* $ctor(::std::vector<::HashedString>&& validGroundBlocks, bool mayPlaceInLava);
58 // NOLINTEND
59
60public:
61 // virtual function thunks
62 // NOLINTBEGIN
63 MCAPI bool $place(::BlockSource& region, ::BlockPos const& origin, ::Random& random) const;
64
65
66 // NOLINTEND
67
68public:
69 // vftables
70 // NOLINTBEGIN
71 MCNAPI static void** $vftable();
72 // NOLINTEND
73};
Definition BlockPos.h:21
Definition BlockSource.h:73
Definition HashedString.h:5
static MCAPI void ** $vftable()
Definition Random.h:10