remove unused use statements

This commit is contained in:
jake 2020-08-02 07:39:20 -06:00
parent 6a8fccd360
commit f8d249380c
6 changed files with 3 additions and 52 deletions

View File

@ -1,19 +1,6 @@
// TOOD: `pub(super) for most of these?`
use std::convert::Into;
use std::path::PathBuf;
use std::io::{Read};
use std::fs::File;
use byteorder::{LittleEndian, ReadBytesExt};
use rand::Rng;
use thiserror::Error;
use crate::ship::monster::MonsterType;
use crate::ship::room::{Episode, RoomMode};
// TODO: don't use *
use crate::ship::map::*;
use crate::ship::room::Episode;
#[derive(Debug, Copy, Clone, PartialEq)]
pub enum MapArea {

View File

@ -1,15 +1,11 @@
// TOOD: `pub(super) for most of these?`
use std::convert::Into;
use std::path::PathBuf;
use std::io::{Read};
use std::fs::File;
use byteorder::{LittleEndian, ReadBytesExt};
use rand::Rng;
use thiserror::Error;
use crate::ship::monster::MonsterType;
use crate::ship::room::{Episode, RoomMode};
use crate::ship::room::Episode;
use crate::ship::map::*;

View File

@ -1,12 +1,9 @@
// TOOD: `pub(super) for most of these?`
use std::convert::Into;
use std::path::PathBuf;
use std::io::{Read};
use std::fs::File;
use byteorder::{LittleEndian, ReadBytesExt};
use rand::Rng;
use thiserror::Error;
use crate::ship::monster::MonsterType;

View File

@ -10,16 +10,3 @@ pub use enemy::*;
pub use object::*;
pub use variant::*;
pub use maps::*;
use std::convert::Into;
use std::path::PathBuf;
use std::io::{Read};
use std::fs::File;
use byteorder::{LittleEndian, ReadBytesExt};
use rand::Rng;
use thiserror::Error;
use crate::ship::monster::MonsterType;
use crate::ship::room::{Episode, RoomMode};

View File

@ -1,16 +1,10 @@
// TOOD: `pub(super) for most of these?`
use std::convert::Into;
use std::path::PathBuf;
use std::io::{Read};
use std::fs::File;
use byteorder::{LittleEndian, ReadBytesExt};
use rand::Rng;
use thiserror::Error;
use crate::ship::monster::MonsterType;
use crate::ship::room::{Episode, RoomMode};
use crate::ship::room::Episode;
// TODO: don't use *
use crate::ship::map::*;

View File

@ -1,16 +1,6 @@
// TOOD: `pub(super) for most of these?`
use std::convert::Into;
use std::path::PathBuf;
use std::io::{Read};
use std::fs::File;
use byteorder::{LittleEndian, ReadBytesExt};
use rand::Rng;
use thiserror::Error;
use crate::ship::monster::MonsterType;
use crate::ship::room::{Episode, RoomMode};
// TODO: don't use *
use crate::ship::map::*;