LeviLamina
Loading...
Searching...
No Matches
LegacySwampFoliageFeature.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/game_refs/WeakRef.h"
7#include "mc/world/level/levelgen/feature/Feature.h"
8#include "mc/world/level/levelgen/feature/IFeature.h"
9
10// auto generated forward declare list
11// clang-format off
12class BlockPos;
13class BlockSource;
14class FeatureRegistry;
15class Random;
16// clang-format on
17
18class LegacySwampFoliageFeature : public ::Feature {
19public:
20 // member variables
21 // NOLINTBEGIN
22 ::ll::TypedStorage<8, 64, ::std::function<::WeakRef<::IFeature>(::Random&)>> mGetTreeFeature;
23 ::ll::TypedStorage<8, 24, ::WeakRef<::IFeature>> mSeagrassFeature;
24 ::ll::TypedStorage<8, 24, ::WeakRef<::IFeature>> mTallGrassFeature;
25 ::ll::TypedStorage<8, 24, ::WeakRef<::IFeature>> mHugeMushroomFeature;
26 ::ll::TypedStorage<8, 24, ::WeakRef<::IFeature>> mSwampTreeFeature;
27 // NOLINTEND
28
29public:
30 // prevent constructor by default
31 LegacySwampFoliageFeature();
32
33public:
34 // virtual functions
35 // NOLINTBEGIN
36 virtual bool place(::BlockSource& region, ::BlockPos const& origin, ::Random& random) const /*override*/;
37
38 virtual ~LegacySwampFoliageFeature() /*override*/ = default;
39 // NOLINTEND
40
41public:
42 // member functions
43 // NOLINTBEGIN
44 MCAPI explicit LegacySwampFoliageFeature(::FeatureRegistry& registry);
45 // NOLINTEND
46
47public:
48 // constructor thunks
49 // NOLINTBEGIN
50 MCAPI void* $ctor(::FeatureRegistry& registry);
51 // NOLINTEND
52
53public:
54 // virtual function thunks
55 // NOLINTBEGIN
56 MCAPI bool $place(::BlockSource& region, ::BlockPos const& origin, ::Random& random) const;
57
58
59 // NOLINTEND
60
61public:
62 // vftables
63 // NOLINTBEGIN
64 MCNAPI static void** $vftable();
65 // NOLINTEND
66};
Definition BlockPos.h:19
Definition BlockSource.h:68
Definition FeatureRegistry.h:18
Definition Feature.h:18
static MCAPI void ** $vftable()
Definition Random.h:10