LeviLamina
Loading...
Searching...
No Matches
LakeFeature.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/util/random/XoroshiroPositionalRandomFactory.h"
7#include "mc/world/level/levelgen/feature/Feature.h"
8
9// auto generated forward declare list
10// clang-format off
11class Block;
12class BlockPos;
13class BlockSource;
14class Random;
15// clang-format on
16
17class LakeFeature : public ::Feature {
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<8, 8, ::Block const&> mBlock;
22 ::ll::TypedStorage<8, 8, ::Block const&> mEmptyBlock;
23 ::ll::TypedStorage<8, 32, ::std::optional<::XoroshiroPositionalRandomFactory> const>
24 mXoroshiroPositionalRandomFactory;
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
29 LakeFeature& operator=(LakeFeature const&);
32
33public:
34 // virtual functions
35 // NOLINTBEGIN
36 // vIndex: 4
37 virtual bool place(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const /*override*/;
38
39 // vIndex: 0
40 virtual ~LakeFeature() /*override*/;
41 // NOLINTEND
42
43public:
44 // member functions
45 // NOLINTBEGIN
47 ::Block const& block,
48 ::std::optional<::XoroshiroPositionalRandomFactory> xoroshiroPositionalRandomFactory
49 );
50 // NOLINTEND
51
52public:
53 // constructor thunks
54 // NOLINTBEGIN
55 MCNAPI void*
56 $ctor(::Block const& block, ::std::optional<::XoroshiroPositionalRandomFactory> xoroshiroPositionalRandomFactory);
57 // NOLINTEND
58
59public:
60 // destructor thunk
61 // NOLINTBEGIN
62 MCNAPI void $dtor();
63 // NOLINTEND
64
65public:
66 // virtual function thunks
67 // NOLINTBEGIN
68 MCNAPI bool $place(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const;
69 // NOLINTEND
70
71public:
72 // vftables
73 // NOLINTBEGIN
74 MCNAPI static void** $vftable();
75 // NOLINTEND
76};
Definition BlockPos.h:18
Definition BlockSource.h:67
Definition Block.h:38
Definition Feature.h:18
Definition LakeFeature.h:17
MCAPI void $dtor()
MCAPI LakeFeature(::Block const &block, ::std::optional<::XoroshiroPositionalRandomFactory > xoroshiroPositionalRandomFactory)
static MCAPI void ** $vftable()
MCAPI void * $ctor(::Block const &block, ::std::optional<::XoroshiroPositionalRandomFactory > xoroshiroPositionalRandomFactory)
MCAPI bool $place(::BlockSource &region, ::BlockPos const &pos, ::Random &random) const
Definition Random.h:11