mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
11 lines
212 B
Rust
11 lines
212 B
Rust
|
mod town;
|
||
|
|
||
|
// Reexports
|
||
|
pub use self::town::TownGen;
|
||
|
|
||
|
use crate::util::Sampler;
|
||
|
use common::terrain::Block;
|
||
|
use vek::*;
|
||
|
|
||
|
pub trait Generator<'a, T: 'a>: Sampler<'a, Index = (&'a T, Vec3<i32>), Sample = Block> {}
|