mirror of
https://github.com/Azgaar/Fantasy-Map-Generator.git
synced 2026-03-23 23:57:23 +01:00
refactor: migrate zones (#1300)
Some checks failed
Deploy static content to Pages / deploy (push) Has been cancelled
Code quality / quality (push) Has been cancelled
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:
parent
86fc62da03
commit
8ba29b2561
5 changed files with 672 additions and 456 deletions
|
|
@ -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[];
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue