add generated world, territory registries and serverside verification for only legit territories and worlds defined by server

This commit is contained in:
azyges
2025-11-08 07:38:35 +09:00
parent 7cfe29e511
commit cf5135f598
8 changed files with 1290 additions and 5 deletions

View File

@@ -0,0 +1,7 @@
namespace LightlessSyncServer.Models;
internal readonly record struct WorldDefinition(
ushort WorldId,
string Name,
string Region,
string DataCenter);