LeviLamina
Loading...
Searching...
No Matches
ClientChunkGenerationDifferenceData.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class Block;
8class BlockPos;
9class Vec3;
10// clang-format on
11
13public:
14 // member variables
15 // NOLINTBEGIN
16 ::ll::TypedStorage<4, 4, uint> mDifferentBlocksCount;
17 ::ll::TypedStorage<4, 4, uint> mSubChunksCheckedCount;
18 ::ll::TypedStorage<4, 4, uint> mSubChunksFoundDifferentCount;
19 ::ll::TypedStorage<8, 16, ::std::map<::std::pair<::Block const*, ::Block const*>, uint>> mDifferentBlocksMap;
20 ::ll::TypedStorage<8, 24, ::std::vector<::std::pair<float, ::BlockPos>>> mDifferentBlockList;
21 ::ll::TypedStorage<8, 8, ::std::shared_mutex> mSharedMutex;
22 // NOLINTEND
23
24public:
25 // member functions
26 // NOLINTBEGIN
27#ifdef LL_PLAT_C
28 MCAPI void sortDifferentBlockListByDistance(::Vec3 const& currentBlockPos);
29#endif
30 // NOLINTEND
31};
Definition BlockPos.h:21
Definition Block.h:69
Definition Vec3.h:10
Definition ClientChunkGenerationDifferenceData.h:12