LeviLamina
Loading...
Searching...
No Matches
LegacyFlowerFeature.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/feature/helpers/FlowerPlacementType.h"
8#include "mc/world/level/levelgen/synth/PerlinSimplexNoise.h"
9
10// auto generated forward declare list
11// clang-format off
12class BlockPos;
13class BlockSource;
14class Random;
15// clang-format on
16
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<4, 4, ::FlowerPlacementType> mPlacementType;
22 ::ll::TypedStorage<8, 40, ::PerlinSimplexNoise const> mBiomeInfoNoise;
23 ::ll::TypedStorage<4, 4, int const> mIterations;
24 // NOLINTEND
25
26public:
27 // virtual functions
28 // NOLINTBEGIN
29 // vIndex: 4
30 virtual bool place(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const /*override*/;
31
32 // vIndex: 0
33 virtual ~LegacyFlowerFeature() /*override*/ = default;
34 // NOLINTEND
35
36public:
37 // virtual function thunks
38 // NOLINTBEGIN
39 MCAPI bool $place(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const;
40 // NOLINTEND
41
42public:
43 // vftables
44 // NOLINTBEGIN
45 MCNAPI static void** $vftable();
46 // NOLINTEND
47};
Definition BlockPos.h:17
Definition BlockSource.h:66
Definition Feature.h:18
Definition LegacyFlowerFeature.h:17
static MCAPI void ** $vftable()
Definition Random.h:10