LeviLamina
Loading...
Searching...
No Matches
Storage.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/cereal/ReflectionCtx.h"
7#include "mc/world/level/levelgen/v2/WorldGenContext.h"
8#include "mc/world/level/poi/ChunkPosId.h"
9#include "mc/world/level/poi/SectionPosId.h"
10
11// auto generated forward declare list
12// clang-format off
13class Dimension;
14namespace Poi { struct Registry; }
15namespace Poi { struct Section; }
16// clang-format on
17
18namespace Poi {
19
20struct Storage {
21public:
22 // member variables
23 // NOLINTBEGIN
24 ::ll::TypedStorage<8, 72, ::entt::dense_map<::Poi::SectionPosId, ::std::unique_ptr<::Poi::Section>>> mSections;
25 ::ll::TypedStorage<8, 72, ::entt::dense_set<::Poi::ChunkPosId>> mDirtyChunks;
26 ::ll::TypedStorage<2, 6, ::br::worldgen::WorldGenContext> mWorldContext;
27 ::ll::TypedStorage<8, 120, ::cereal::ReflectionCtx> mCtx;
28 ::ll::TypedStorage<8, 8, ::Dimension const*> mDimension;
29 ::ll::TypedStorage<8, 8, ::Poi::Registry const*> mRegistry;
30 // NOLINTEND
31
32public:
33 // member functions
34 // NOLINTBEGIN
35 MCAPI ~Storage();
36 // NOLINTEND
37
38public:
39 // destructor thunk
40 // NOLINTBEGIN
41 MCAPI void $dtor();
42 // NOLINTEND
43};
44
45} // namespace Poi
Definition Dimension.h:85
Definition Registry.h:7
Definition Section.h:10
Definition Storage.h:20