feat(core): add LandblockLoader with Stab+Building → WorldEntity mapping

This commit is contained in:
Erik 2026-04-10 17:58:30 +02:00
parent dbf913ebb4
commit 473a06c534
6 changed files with 221 additions and 0 deletions

View file

@ -0,0 +1,8 @@
using DatReaderWriter.DBObjs;
namespace AcDream.Core.World;
public sealed record LoadedLandblock(
uint LandblockId,
LandBlock Heightmap,
IReadOnlyList<WorldEntity> Entities);