mirror of
https://github.com/Azgaar/Fantasy-Map-Generator.git
synced 2026-03-23 23:57:23 +01:00
refactor: migrate states generator (#1291)
* refactor: migrate states generator * Update src/modules/states-generator.ts Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update src/modules/states-generator.ts Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
parent
363c82ee30
commit
88c70b9264
6 changed files with 829 additions and 643 deletions
|
|
@ -2,6 +2,7 @@ import type { Burg } from "../modules/burgs-generator";
|
|||
import type { Culture } from "../modules/cultures-generator";
|
||||
import type { PackedGraphFeature } from "../modules/features";
|
||||
import type { River } from "../modules/river-generator";
|
||||
import type { State } from "../modules/states-generator";
|
||||
|
||||
type TypedArray =
|
||||
| Uint8Array
|
||||
|
|
@ -48,6 +49,7 @@ export interface PackedGraph {
|
|||
rivers: River[];
|
||||
features: PackedGraphFeature[];
|
||||
burgs: Burg[];
|
||||
states: any[];
|
||||
states: State[];
|
||||
cultures: Culture[];
|
||||
religions: any[];
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue