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
17class LegacyFlowerFeature : public ::Feature {
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 // prevent constructor by default
28 LegacyFlowerFeature();
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 virtual bool place(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const /*override*/;
34 // NOLINTEND
35
36public:
37 // member functions
38 // NOLINTBEGIN
39 MCAPI LegacyFlowerFeature(::FlowerPlacementType placementType, int iterations);
40 // NOLINTEND
41
42public:
43 // constructor thunks
44 // NOLINTBEGIN
45 MCAPI void* $ctor(::FlowerPlacementType placementType, int iterations);
46 // NOLINTEND
47
48public:
49 // virtual function thunks
50 // NOLINTBEGIN
51 MCAPI bool $place(::BlockSource& region, ::BlockPos const& pos, ::Random& random) const;
52
53
54 // NOLINTEND
55
56public:
57 // vftables
58 // NOLINTBEGIN
59 MCNAPI static void** $vftable();
60 // NOLINTEND
61};
Definition BlockPos.h:21
Definition BlockSource.h:73
static MCAPI void ** $vftable()
Definition Random.h:10