Trait mapgen::MapFilter

source ·
pub trait MapFilter {
    fn modify_map(&self, rng: &mut StdRng, map: &MapBuffer) -> MapBuffer;
}
Expand description

Trait which should be implemented by map modifier. Modifier takes initiall map and apply changes to it.

Required Methods§

Implementors§