diff options
author | Guillaume Pasquet <dev@etenil.net> | 2019-11-20 14:29:21 +0000 |
---|---|---|
committer | Guillaume Pasquet <dev@etenil.net> | 2019-11-20 14:29:21 +0000 |
commit | 15ccde4be6585865d01d9a620778dbcf5d8d998d (patch) | |
tree | 62f87126d9f9295ef363984d349e2e6aaa5f5c50 /src/world.rs | |
parent | bd87cf7569ace13eb2351fb5fc1a58f01f83f343 (diff) |
Go up and down the stairs!
Diffstat (limited to 'src/world.rs')
-rw-r--r-- | src/world.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/world.rs b/src/world.rs index 20b510a..a315111 100644 --- a/src/world.rs +++ b/src/world.rs @@ -254,9 +254,17 @@ impl Dungeon { } } + pub fn xsize(&self) -> usize { + self.xsize + } + pub fn ysize(&self) -> usize { self.ysize } + + pub fn depth(&self) -> usize { + self.depth + } } impl Generatable for Dungeon { |