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