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
Showing only changes of commit c0bcf1ad70 - Show all commits

View file

@ -10,7 +10,6 @@ pub struct MenusPlugin;
impl Plugin for MenusPlugin { impl Plugin for MenusPlugin {
fn build(&self, app: &mut App) { fn build(&self, app: &mut App) {
app.add_plugins(EguiPlugin) app.add_plugins(EguiPlugin).add_plugins(menu::MenuPlugin);
.add_plugins(menu::MenuPlugin);
} }
} }