summaryrefslogtreecommitdiff
path: root/src/componentwrapper.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/componentwrapper.rs')
-rw-r--r--src/componentwrapper.rs11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/componentwrapper.rs b/src/componentwrapper.rs
index 27e0783..8ab991a 100644
--- a/src/componentwrapper.rs
+++ b/src/componentwrapper.rs
@@ -2,9 +2,14 @@
use std::collections::HashMap;
use specs::Builder;
-use crate::{PlayerId, RoomId, Sprite, playerstate::RoomPos};
-use crate::components::{Visible, Blocking, Player, Floor, Item, Inventory, Health, Serialise, RoomExit};
-use crate::parameter::{Parameter, ParameterType};
+use crate::{
+ PlayerId,
+ RoomId,
+ Sprite,
+ playerstate::RoomPos,
+ components::{Visible, Blocking, Player, Floor, Item, Inventory, Health, Serialise, RoomExit},
+ parameter::{Parameter, ParameterType}
+};