Change of file structure for scenes #38

Merged
tipragot merged 11 commits from restruct-menus into main 2024-02-10 17:26:09 +00:00
4 changed files with 2 additions and 2 deletions
Showing only changes of commit 54bd32b266 - Show all commits

View file

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

View file

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