diff options
Diffstat (limited to 'src/map.rs')
-rw-r--r-- | src/map.rs | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -53,6 +53,12 @@ impl Map { } } + pub fn update(&mut self) { + for layer in self.layers.iter_mut() { + layer.update(); + } + } + pub fn get_dimensions(&self) -> (f32, f32) { ( (constants::TILE_WIDTH * constants::TILE_SCALE) * self.width as f32, |