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/FileStorage.h"
9#include "mc/world/level/poi/RegionId.h"
10#include "mc/world/level/poi/StorageInfo.h"
11
12// auto generated forward declare list
13// clang-format off
14namespace Poi { struct Region; }
15namespace Poi { struct Registry; }
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::RegionId, ::std::unique_ptr<::Poi::Region>>> mRegions;
25 ::ll::TypedStorage<8, 64, ::std::unordered_set<::Poi::RegionId>> mDirtyRegions;
26 ::ll::TypedStorage<2, 6, ::br::worldgen::WorldGenContext> mWorldContext;
27 ::ll::TypedStorage<8, 64, ::Poi::StorageInfo> mInfo;
28 ::ll::TypedStorage<8, 128, ::cereal::ReflectionCtx> mCtx;
29 ::ll::TypedStorage<8, 64, ::Poi::FileStorage> mBackingStorage;
30 ::ll::TypedStorage<8, 8, ::Poi::Registry const*> mRegistry;
31 // NOLINTEND
32
33public:
34 // member functions
35 // NOLINTBEGIN
36 MCAPI ~Storage();
37 // NOLINTEND
38
39public:
40 // destructor thunk
41 // NOLINTBEGIN
42 MCAPI void $dtor();
43 // NOLINTEND
44};
45
46} // namespace Poi
Definition Region.h:12
Definition Registry.h:7
Definition Storage.h:20