8 lines
189 B
C#
8 lines
189 B
C#
using DatReaderWriter.DBObjs;
|
|
|
|
namespace AcDream.Core.World;
|
|
|
|
public sealed record LoadedLandblock(
|
|
uint LandblockId,
|
|
LandBlock Heightmap,
|
|
IReadOnlyList<WorldEntity> Entities);
|