equal
deleted
inserted
replaced
1 use integral_geometry::{Point, Size}; |
1 use integral_geometry::{Point, Size}; |
2 use land2d::Land2D; |
2 use land2d::Land2D; |
3 use LandGenerationParameters; |
3 use crate::{ |
4 use LandGenerator; |
4 LandGenerationParameters, |
5 |
5 LandGenerator, |
6 use outline::OutlinePoints; |
6 outline::OutlinePoints, |
7 use outline_template::OutlineTemplate; |
7 outline_template::OutlineTemplate |
|
8 }; |
8 |
9 |
9 pub struct TemplatedLandGenerator { |
10 pub struct TemplatedLandGenerator { |
10 outline_template: OutlineTemplate, |
11 outline_template: OutlineTemplate, |
11 } |
12 } |
12 |
13 |