From a14aaee0a78acf0a729243dd90c5031def9e5691 Mon Sep 17 00:00:00 2001 From: klangner Date: Tue, 3 Nov 2020 09:24:33 +0100 Subject: [PATCH] Improved README example --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index a46a8ac..3b8618c 100644 --- a/README.md +++ b/README.md @@ -67,6 +67,8 @@ let map = MapBuilder::new(80, 50) .with(NoiseGenerator::uniform()) .with(CellularAutomata::new()) .with(AreaStartingPosition::new(XStart::CENTER, YStart::CENTER)) + .with(CullUnreachable::new()) + .with(DistantExit::new()) .build(); ```