LeviLamina
Loading...
Searching...
No Matches
ParameterList.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/biome/RTree.h"
7
8// auto generated forward declare list
9// clang-format off
10struct BiomeNoiseTarget;
11// clang-format on
12
13class ParameterList {
14public:
15 // member variables
16 // NOLINTBEGIN
17 ::ll::TypedStorage<8, 24, ::std::vector<::BiomeNoiseTarget>> mNoiseTargets;
18 ::ll::TypedStorage<8, 168, ::std::optional<::RTree>> mTree;
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
23 ParameterList();
24
25public:
26 // member functions
27 // NOLINTBEGIN
28 MCAPI explicit ParameterList(::std::vector<::BiomeNoiseTarget> const& targets);
29
30 MCAPI ~ParameterList();
31 // NOLINTEND
32
33public:
34 // constructor thunks
35 // NOLINTBEGIN
36 MCAPI void* $ctor(::std::vector<::BiomeNoiseTarget> const& targets);
37 // NOLINTEND
38
39public:
40 // destructor thunk
41 // NOLINTBEGIN
42 MCAPI void $dtor();
43 // NOLINTEND
44};
Definition BiomeNoiseTarget.h:13