1
0
Fork 0

Remove unused imports

This commit is contained in:
Timothy Warren 2022-01-18 09:40:19 -05:00
parent 10cccd17c7
commit 36b82a59c5
3 changed files with 2 additions and 5 deletions

View File

@ -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.);

View File

@ -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 {}

View File

@ -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 {