diff options
Diffstat (limited to 'pixel-client/src/tilemap.rs')
-rw-r--r-- | pixel-client/src/tilemap.rs | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/pixel-client/src/tilemap.rs b/pixel-client/src/tilemap.rs index edab8b61..b67fc224 100644 --- a/pixel-client/src/tilemap.rs +++ b/pixel-client/src/tilemap.rs @@ -15,15 +15,14 @@ along with this program. If not, see <https://www.gnu.org/licenses/>. */ -use hurrycurry_protocol::{glam::IVec2, TileIndex}; -use log::warn; -use sdl2::rect::Rect; -use std::collections::{HashMap, HashSet}; - use crate::render::{ sprite::{Sprite, SpriteDraw}, Renderer, }; +use hurrycurry_protocol::{glam::IVec2, TileIndex}; +use log::warn; +use sdl2::rect::Rect; +use std::collections::{HashMap, HashSet}; #[derive(Default, Debug)] pub struct Tilemap { |