Skip to content

Commit

Permalink
Cargo check
Browse files Browse the repository at this point in the history
  • Loading branch information
manuelmauro committed Apr 8, 2024
1 parent 08e13a3 commit 1f8fc02
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/menu/checkbox.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use bevy::prelude::*;

use crate::{game::settings::GameSettings, palette, state::AppState};
use crate::{game::settings::GameSettings, palette};

pub const NORMAL_BUTTON: Color = palette::SLATE_800;
pub const HOVERED_BUTTON: Color = palette::LIME_900;
Expand Down
2 changes: 1 addition & 1 deletion src/menu/mod.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use bevy::prelude::*;

use crate::{
game::{score::LatestGameScores, settings::GameSettings, tile::position},
game::{score::LatestGameScores, settings::GameSettings},
state::{despawn_screen, AppState, OnMenuScreen},
};

Expand Down
1 change: 0 additions & 1 deletion src/menu/ui.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
use bevy::prelude::*;
use bevy_egui::{egui, EguiContexts};

use crate::{
game::{score::LatestGameScores, settings::GameSettings},
Expand Down

0 comments on commit 1f8fc02

Please sign in to comment.