From 494037db77088b520909a78ec1d425de6fec27dc Mon Sep 17 00:00:00 2001 From: Guillaume Pasquet Date: Sun, 17 Nov 2019 02:05:17 +0000 Subject: Rustfmt FTW --- src/state.rs | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) (limited to 'src/state.rs') diff --git a/src/state.rs b/src/state.rs index 2f09d1e..b5ab6ca 100644 --- a/src/state.rs +++ b/src/state.rs @@ -1,14 +1,14 @@ use pancurses::Window; -use crate::tiling::{TileType, TileGrid, tile_to_str}; use crate::entities::{Character, Entity}; +use crate::tiling::{tile_to_str, TileGrid, TileType}; use crate::world::{Dungeon, Generatable, Level}; pub struct State { pub player: Character, dungeon: Dungeon, level: usize, - grid: Option + grid: Option, } pub fn draw_block(window: &Window, block: &TileType) { @@ -21,7 +21,7 @@ impl State { player, dungeon, level: 0, - grid: None + grid: None, } } @@ -51,8 +51,14 @@ impl State { } let dirt = entity.get_previous_location(); window.mv(dirt.1 as i32, dirt.0 as i32); - draw_block(window, self.grid.as_ref().unwrap().get_block_at(dirt.0, dirt.1)); - window.mv(entity.get_location().1 as i32, entity.get_location().0 as i32); + draw_block( + window, + self.grid.as_ref().unwrap().get_block_at(dirt.0, dirt.1), + ); + window.mv( + entity.get_location().1 as i32, + entity.get_location().0 as i32, + ); draw_block(window, entity.get_tiletype()); } @@ -73,4 +79,4 @@ impl State { pub fn get_player_mut(&mut self) -> &mut Character { &mut self.player } -} \ No newline at end of file +} -- cgit v1.2.3