Clean up warnings

This commit is contained in:
Adam Whitehurst
2020-03-07 13:03:10 -08:00
parent 54a7112ad9
commit 49c7143144
6 changed files with 28 additions and 28 deletions

View File

@ -1,9 +1,6 @@
use crate::{
comp::{
item, projectile, Body, ControlEvent, Controller, ControllerInputs, Energy, EnergySource,
HealthChange, HealthSource, ItemKind, Mounting, PhysicsState, Projectile, Stats, Vel,
},
event::{Emitter, EventBus, LocalEvent, ServerEvent},
comp::{ControlEvent, Controller},
event::{EventBus, LocalEvent, ServerEvent},
state::DeltaTime,
sync::{Uid, UidAllocator},
};
@ -12,8 +9,8 @@ use specs::{
Entities, Join, Read, ReadStorage, System, WriteStorage,
};
const CHARGE_COST: i32 = 200;
const ROLL_COST: i32 = 30;
// const CHARGE_COST: i32 = 200;
// const ROLL_COST: i32 = 30;
pub struct Sys;