LeviLamina
Loading...
Searching...
No Matches
MeadowFlowerFeature.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#include "mc/world/level/levelgen/synth/PerlinSimplexNoise.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
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<8, 40, ::PerlinSimplexNoise const> mBiomeInfoNoise;
22 ::ll::TypedStorage<8, 64, ::std::array<::Block const*, 8> const> mPossibleBlocks;
23 // NOLINTEND
24
25public:
26 // virtual functions
27 // NOLINTBEGIN
28 virtual bool place(::BlockSource& region, ::BlockPos const& pos, ::Random&) const /*override*/;
29
30 virtual ~MeadowFlowerFeature() /*override*/ = default;
31 // NOLINTEND
32
33public:
34 // virtual function thunks
35 // NOLINTBEGIN
36 MCAPI bool $place(::BlockSource& region, ::BlockPos const& pos, ::Random&) const;
37
38
39 // NOLINTEND
40
41public:
42 // vftables
43 // NOLINTBEGIN
44 MCNAPI static void** $vftable();
45 // NOLINTEND
46};
Definition BlockPos.h:19
Definition BlockSource.h:68
Definition Block.h:43
Definition Feature.h:18
Definition MeadowFlowerFeature.h:17
static MCAPI void ** $vftable()
Definition Random.h:10