LeviLamina
Loading...
Searching...
No Matches
ChunkLocalNoiseCache.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/DividedPos2d.h"
7
9public:
10 // ChunkLocalNoiseCache inner types declare
11 // clang-format off
12 struct CacheEntry;
13 // clang-format on
14
15 // ChunkLocalNoiseCache inner types define
16 struct CacheEntry {
17 public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<4, 4, float> shiftedX;
21 ::ll::TypedStorage<4, 4, float> shiftedZ;
22 ::ll::TypedStorage<4, 4, float> continentalness;
23 ::ll::TypedStorage<4, 4, float> weirdness;
24 ::ll::TypedStorage<4, 4, float> erosion;
25 ::ll::TypedStorage<4, 4, float> offset;
26 ::ll::TypedStorage<4, 4, float> factor;
27 ::ll::TypedStorage<4, 4, float> jag;
28 ::ll::TypedStorage<4, 4, float> temperature;
29 ::ll::TypedStorage<4, 4, float> humidity;
30 // NOLINTEND
31 };
32
33public:
34 // member variables
35 // NOLINTBEGIN
36 ::ll::TypedStorage<4, 8, ::DividedPos2d<4> const> mFirstQuartPos;
37 ::ll::TypedStorage<4, 4, int const> mCellCountXZ;
38 ::ll::TypedStorage<8, 24, ::std::vector<::ChunkLocalNoiseCache::CacheEntry>> mNoiseCacheEntries;
39 // NOLINTEND
40
41public:
42 // member functions
43 // NOLINTBEGIN
45 // NOLINTEND
46
47public:
48 // destructor thunk
49 // NOLINTBEGIN
50 MCAPI void $dtor();
51 // NOLINTEND
52};
Definition ChunkLocalNoiseCache.h:8
Definition ChunkLocalNoiseCache.h:16