diff --git a/game/Cargo.toml b/game/Cargo.toml index ceb7d2c..a220020 100644 --- a/game/Cargo.toml +++ b/game/Cargo.toml @@ -18,7 +18,7 @@ rust-embed = "6.2.0" raylib = "3.5" puffin = "0.9" puffin_http = "0.6" -dirty-fsm = "^0.2.1" +dirty-fsm = "^0.2.2" num-traits = "0.2" sentry = "0.23" diff --git a/game/src/lib.rs b/game/src/lib.rs index b2384a4..c79bc08 100644 --- a/game/src/lib.rs +++ b/game/src/lib.rs @@ -75,15 +75,10 @@ use raylib::prelude::*; use tracing::{error, info}; use utilities::discord::DiscordConfig; -use crate::{ - context::GameContext, - discord_rpc::{maybe_set_discord_presence, try_connect_to_local_discord}, - scenes::build_screen_state_machine, - utilities::shaders::{ +use crate::{context::GameContext, discord_rpc::{maybe_set_discord_presence, try_connect_to_local_discord}, scenes::{Scenes, build_screen_state_machine}, utilities::shaders::{ shader::ShaderWrapper, util::{dynamic_screen_texture::DynScreenTexture, render_texture::render_to_texture}, - }, -}; + }}; #[macro_use] extern crate thiserror; @@ -131,6 +126,7 @@ pub async fn game_begin(game_config: &GameConfig) -> Result<(), Box