Version 0.1.2

This commit is contained in:
klangner 2020-09-03 22:03:59 +02:00
parent 293853de3d
commit d93d015206
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
[package] [package]
name = "mapgen" name = "mapgen"
version = "0.1.1" version = "0.1.2"
authors = ["Krzysztof Langner <klangner@gmail.com>"] authors = ["Krzysztof Langner <klangner@gmail.com>"]
description = "Map generator for games (dungeons, worlds etc.)" description = "Map generator for games (dungeons, worlds etc.)"
keywords = ["game", "map", "map-generator"] keywords = ["game", "map", "map-generator"]

View File

@ -1,6 +1,6 @@
//! Remove unreachable areas from the map. //! Remove unreachable areas from the map.
//! //!
//! This modifier reuires starting position on the map. //! This modifier reiquires starting position on the map.
//! It will add wall on every tile which is not accessible from the starting point. //! It will add wall on every tile which is not accessible from the starting point.
//! //!