X-Git-Url: http://dolda2000.com/gitweb/?a=blobdiff_plain;f=src%2Fmain.rs;h=d60ad5518f39cf672c0b5f60bc1e6183de9dd798;hb=92787d379ad61bc3ffc80d4944b5f19385deebff;hp=26ceadb655834bced4a6c0a40809752d172f9c53;hpb=3d049b501751d825314db31b7f89d607eaae3e70;p=kaka%2Frust-sdl-test.git diff --git a/src/main.rs b/src/main.rs index 26ceadb..d60ad55 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,14 +1,17 @@ extern crate rand; extern crate sdl2; extern crate time; +extern crate noise; +use core::game::GameState; use core::app::*; -mod core; -#[macro_use] -mod common; mod boll; +mod core; +mod geometry; mod sprites; +mod teststate; +mod util; const SCREEN_WIDTH: u16 = 1280; const SCREEN_HEIGHT: u16 = (SCREEN_WIDTH as f64 * (1440.0 / 2560.0)) as u16; @@ -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();