From 591e0dad70e8aa9514039f9193dfcd57d6334a7f Mon Sep 17 00:00:00 2001 From: Guillaume Pasquet Date: Tue, 19 Nov 2019 04:23:13 +0000 Subject: Ensure privacy is private --- src/world.rs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'src/world.rs') diff --git a/src/world.rs b/src/world.rs index 21d0d86..d8d44f9 100644 --- a/src/world.rs +++ b/src/world.rs @@ -221,8 +221,8 @@ pub struct Level { } pub struct Dungeon { - pub xsize: usize, - pub ysize: usize, + xsize: usize, + ysize: usize, depth: usize, pub levels: Vec, } @@ -253,6 +253,10 @@ impl Dungeon { levels: vec![], } } + + pub fn get_ysize(&self) -> usize { + self.ysize + } } impl Generatable for Dungeon { -- cgit v1.2.3