Remove unused imports
This commit is contained in:
parent
10cccd17c7
commit
36b82a59c5
@ -73,9 +73,6 @@ pub const MAGENTA: RGB = new(1., 0., 1.);
|
||||
/// RGB: (128, 128, 128)
|
||||
pub const MID_GRAY: RGB = new(0.5, 0.5, 0.5);
|
||||
|
||||
/// RGB: (0, 0, 128)
|
||||
pub const NAVY_BLUE: RGB = new(0., 0., 0.50196);
|
||||
|
||||
/// RGB: (255, 165, 0)
|
||||
pub const ORANGE: RGB = new(1., 0.647, 0.);
|
||||
|
||||
|
@ -8,7 +8,7 @@ use crate::game_log::GameLog;
|
||||
use crate::gamesystem::{mana_at_level, player_hp_at_level};
|
||||
use crate::particle_system::ParticleBuilder;
|
||||
use crate::raws::{self, SpawnType, RAWS};
|
||||
use crate::{colors, spatial, Map, RunState};
|
||||
use crate::{colors, Map, RunState};
|
||||
|
||||
pub struct DamageSystem {}
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
use ::rltk::{DistanceAlg, Point, RandomNumberGenerator};
|
||||
|
||||
use super::{BuilderMap, MetaMapBuilder};
|
||||
use crate::{map, Map, TileType};
|
||||
use crate::{map, TileType};
|
||||
|
||||
#[allow(dead_code)]
|
||||
pub enum XEnd {
|
||||
|
Loading…
Reference in New Issue
Block a user