X-Git-Url: http://dolda2000.com/gitweb/?a=blobdiff_plain;f=src%2Fmain.rs;h=a068a5842b373130a51f68acffa9084ff121b8e6;hb=b0137bb6d47c158bff30f2d4fd1faab9d4945d54;hp=256cc3cef0effcd7bde40624535a67ece479b90f;hpb=77034de98f1182979c74c6ccc81944ef74db35b4;p=kaka%2Frust-sdl-test.git diff --git a/src/main.rs b/src/main.rs index 256cc3c..a068a58 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,10 +1,13 @@ extern crate rand; extern crate sdl2; extern crate time; +extern crate noise; -use game::app::*; +use core::game::GameState; +use core::app::*; -mod game; +mod teststate; +mod core; #[macro_use] mod common; mod boll; @@ -17,7 +20,8 @@ fn main() { println!("starting..."); let mut app = App::new() .with_resolution(SCREEN_WIDTH, SCREEN_HEIGHT) - .with_state(Box::new(ActiveState::new((SCREEN_WIDTH as u32, SCREEN_HEIGHT as u32)))) +// .with_state(Box::new(ActiveState::new((SCREEN_WIDTH as u32, SCREEN_HEIGHT as u32)))) + .with_state(Box::new(GameState::new())) .with_title("SDL test") .build() .unwrap();