Change naming menus to scenes
All checks were successful
Rust Checks / checks (push) Successful in 1m3s
Rust Checks / checks (pull_request) Successful in 1m2s

This commit is contained in:
CoCo_Sol 2024-02-10 17:54:20 +01:00
parent c0bcf1ad70
commit 54bd32b266
4 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@
use bevy::prelude::*; use bevy::prelude::*;
pub mod menus; pub mod scenes;
/// The state of the game. /// The state of the game.
#[derive(Debug, Clone, Copy, Default, Eq, PartialEq, Hash, States)] #[derive(Debug, Clone, Copy, Default, Eq, PartialEq, Hash, States)]

View file

@ -1,7 +1,7 @@
//! The main entry point of the game. //! The main entry point of the game.
use bevy::prelude::*; use bevy::prelude::*;
use border_wars::menus::MenusPlugin; use border_wars::scenes::MenusPlugin;
use border_wars::GameState; use border_wars::GameState;
fn main() { fn main() {