diff --git a/src/lib.rs b/src/lib.rs index fb239b2..ee31eff 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -3,8 +3,6 @@ extern crate rand; extern crate sdl2; -use dispatcher::Dispatcher; - pub mod dispatcher; pub mod action; pub mod store; @@ -20,7 +18,7 @@ pub mod scene_manager; mod tests; /// "Front-end"-function of the dispatcher -pub fn game_loop<'a>(mut disp: & mut dispatcher::Dispatcher<'a>, store_refs: Vec<&'a mut store::Store<'a>>) { //todo: HMM +pub fn game_loop<'a>(mut disp: & mut dispatcher::Dispatcher<'a>, store_refs: Vec<&'a mut store::Store<'a>>) { disp.enter_refs(store_refs);