diff options
author | metamuffin <metamuffin@disroot.org> | 2024-09-16 20:34:05 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-09-16 20:34:05 +0200 |
commit | 9a1a3fd088b9839c654241188172234ab558729d (patch) | |
tree | 624d253b9e2bbeadf7adfb0dd61565b820777d42 /pixel-client/src/tilemap.rs | |
parent | ae6ca47c264a4fc3b15e99b1424e11472923d4be (diff) | |
download | hurrycurry-9a1a3fd088b9839c654241188172234ab558729d.tar hurrycurry-9a1a3fd088b9839c654241188172234ab558729d.tar.bz2 hurrycurry-9a1a3fd088b9839c654241188172234ab558729d.tar.zst |
pc: localization
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 { |