Add "Game Over" text to the game over screen
All checks were successful
Basic checks / Basic build-and-test supertask (push) Successful in 7m18s

This commit is contained in:
2025-08-15 15:26:11 -05:00
parent 73ee5e554b
commit 746de2bd80

View File

@@ -216,6 +216,11 @@ fn spawn_gameover_ui(mut commands: Commands) {
..default()
},
children![
(
Text::new("Game Over"),
TextFont::from_font_size(35.0),
TextShadow::default(),
),
(button_bundle("Main Menu"), ButtonMenuAction::ToMainMenu,),
(button_bundle("Quit"), ButtonMenuAction::Quit),
],