refactor: migrate zones (#1300)
Some checks failed
Deploy static content to Pages / deploy (push) Has been cancelled
Code quality / quality (push) Has been cancelled

* refactor: migrate zones

* refactor: remove duplicate markers property from PackedGraph interface
This commit is contained in:
Marc Emmanuel 2026-02-03 17:22:25 +01:00 committed by GitHub
parent 86fc62da03
commit 8ba29b2561
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 672 additions and 456 deletions

View file

@ -5,6 +5,7 @@ import type { Province } from "../modules/provinces-generator";
import type { River } from "../modules/river-generator";
import type { Route } from "../modules/routes-generator";
import type { State } from "../modules/states-generator";
import type { Zone } from "../modules/zones-generator";
type TypedArray =
| Uint8Array
@ -58,7 +59,8 @@ export interface PackedGraph {
cultures: Culture[];
routes: Route[];
religions: any[];
ice: any[];
zones: Zone[];
markers: any[];
ice: any[];
provinces: Province[];
}