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& operator=(LegacyBlendedNoise const&);
25 LegacyBlendedNoise();
26
27public:
28 // member functions
29 // NOLINTBEGIN
30 MCAPI LegacyBlendedNoise(::LegacyBlendedNoise const&);
31
32 MCAPI explicit LegacyBlendedNoise(::IRandom& random);
33
34 MCAPI ~LegacyBlendedNoise();
35 // NOLINTEND
36
37public:
38 // static functions
39 // NOLINTBEGIN
40 MCAPI static ::LegacyBlendedNoise make(::IRandom& random);
41 // NOLINTEND
42
43public:
44 // constructor thunks
45 // NOLINTBEGIN
46 MCAPI void* $ctor(::LegacyBlendedNoise const&);
47
48 MCAPI void* $ctor(::IRandom& random);
49 // NOLINTEND
50
51public:
52 // destructor thunk
53 // NOLINTBEGIN
54 MCAPI void $dtor();
55 // NOLINTEND
56};
Definition IRandom.h:10