LeviLamina
Loading...
Searching...
No Matches
LegacyForestFoliageFeature.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
8// auto generated forward declare list
9// clang-format off
10class BlockPos;
11class BlockSource;
12class FeatureRegistry;
13class Random;
14// clang-format on
15
17public:
18 // LegacyForestFoliageFeature inner types define
19 enum class Type : int {
20 Flower = 0,
21 Normal = 1,
22 Roofed = 2,
23 };
24
25public:
26 // member variables
27 // NOLINTBEGIN
36 // NOLINTEND
37
38public:
39 // prevent constructor by default
43
44public:
45 // virtual functions
46 // NOLINTBEGIN
47 // vIndex: 4
48 virtual bool place(::BlockSource& region, ::BlockPos const& origin, ::Random& random) const /*override*/;
49
50 // vIndex: 0
51 virtual ~LegacyForestFoliageFeature() /*override*/ = default;
52 // NOLINTEND
53
54public:
55 // member functions
56 // NOLINTBEGIN
57 MCAPI LegacyForestFoliageFeature(::LegacyForestFoliageFeature::Type forestType, ::FeatureRegistry& registry);
58 // NOLINTEND
59
60public:
61 // constructor thunks
62 // NOLINTBEGIN
63 MCAPI void* $ctor(::LegacyForestFoliageFeature::Type forestType, ::FeatureRegistry& registry);
64 // NOLINTEND
65
66public:
67 // destructor thunk
68 // NOLINTBEGIN
69
70 // NOLINTEND
71
72public:
73 // virtual function thunks
74 // NOLINTBEGIN
75 MCAPI bool $place(::BlockSource& region, ::BlockPos const& origin, ::Random& random) const;
76 // NOLINTEND
77
78public:
79 // vftables
80 // NOLINTBEGIN
81 MCAPI static void** $vftable();
82 // NOLINTEND
83};
Definition BlockPos.h:18
Definition BlockSource.h:67
Definition FeatureRegistry.h:18
Definition Feature.h:18
Definition LegacyForestFoliageFeature.h:16
Definition Random.h:16
Definition Alias.h:14