Adding a lobby scene #34

Merged
tipragot merged 13 commits from lobby-menu into main 2024-02-10 18:07:50 +00:00
Showing only changes of commit 24fbf67ed9 - Show all commits

View file

@ -1,9 +1,8 @@
//! All the menu's programme.
//! The file containing all menu programs.
use bevy::prelude::*;
use bevy_egui::EguiPlugin;
pub mod lobby;
pub mod menu;
/// The plugin for all menus.
@ -11,8 +10,6 @@ pub struct MenusPlugin;
impl Plugin for MenusPlugin {
fn build(&self, app: &mut App) {
app.add_plugins(EguiPlugin)
.add_plugins(lobby::LobbyPlugin)
.add_plugins(menu::MenuPlugin);
app.add_plugins(EguiPlugin).add_plugins(menu::MenuPlugin);
}
}