From 5325aa56df85bc97f50cd4afa0386b7ad2538a76 Mon Sep 17 00:00:00 2001 From: Isabelle Lesko Date: Sun, 23 Aug 2020 13:20:17 -0500 Subject: [PATCH] working titlescreen, almost at where i was before woo --- src/main.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index c783b99..a27916a 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,4 +1,5 @@ // modules +mod resources; mod states; // namespacing @@ -48,7 +49,7 @@ fn main() -> amethyst::Result<()> { )?; // create and run the game - let mut game = Application::new(assets, states::preload_state::PreloadState, game_data)?; + let mut game = Application::new(assets, states::preload::PreloadState::new(), game_data)?; game.run(); Ok(())