aboutsummaryrefslogtreecommitdiff
path: root/src/tiling.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/tiling.rs')
-rw-r--r--src/tiling.rs12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/tiling.rs b/src/tiling.rs
index 81b7be4..f1630d6 100644
--- a/src/tiling.rs
+++ b/src/tiling.rs
@@ -1,11 +1,15 @@
pub struct TileGrid {
grid: Vec<Vec<TileType>>,
+ xsize: usize,
+ ysize: usize,
}
impl TileGrid {
pub fn new(xsize: usize, ysize: usize) -> TileGrid {
let mut grid = TileGrid {
grid: Vec::with_capacity(ysize),
+ xsize,
+ ysize,
};
for _ in 0..ysize {
@@ -42,6 +46,14 @@ impl TileGrid {
pub fn block_at(&self, x: usize, y: usize) -> &TileType {
&self.grid[y + 1][x]
}
+
+ pub fn xsize(&self) -> usize {
+ self.xsize
+ }
+
+ pub fn ysize(&self) -> usize {
+ self.ysize
+ }
}
pub fn tile_to_str(tile: &TileType) -> &str {