Remove some compiler warnings

stinkhead7ds
Ashley N. 2023-09-23 16:25:14 -04:00
parent 1f704e88ba
commit 485d1d0304
1 changed files with 1 additions and 2 deletions

View File

@ -1,9 +1,8 @@
use std::{error::Error, convert::TryInto, cmp::max, num::ParseIntError, collections::HashMap}; use std::{error::Error, convert::TryInto, cmp::max, num::ParseIntError, collections::HashMap};
use image::GenericImageView; use image::GenericImageView;
use linked_hash_map::LinkedHashMap;
use linked_hash_set::LinkedHashSet; use linked_hash_set::LinkedHashSet;
use crate::reskit::{tileset::image_to_tiles, utility::{symbol_to_pascal, print_info}, cli::settings::TileOrder}; use crate::reskit::{tileset::image_to_tiles, utility::{symbol_to_pascal, print_info}, cli::settings::TileOrder};
use super::{converter::{TiledTilemap, Layer, SystemPlane}, ecs::Component}; use super::converter::{TiledTilemap, Layer, SystemPlane};
/** /**
* Output the .bin and .pal file (using `tileset` tool to build it) containing each of the tiles * Output the .bin and .pal file (using `tileset` tool to build it) containing each of the tiles