refactor: river generation continue

This commit is contained in:
max 2022-07-20 01:21:55 +03:00
parent 4e65616dbc
commit cd86c61b79
6 changed files with 196 additions and 131 deletions

View file

@ -27,6 +27,10 @@ interface IPackFeatureLake extends IPackFeatureBase {
name: string;
shoreline: number[];
height: number;
flux?: number;
temp?: number;
evaporation?: number;
outCell?: number;
}
type TPackFeature = IPackFeatureOcean | IPackFeatureIsland | IPackFeatureLake;