From be745273e2f374f3bb3eafab25287b53d3de80d8 Mon Sep 17 00:00:00 2001 From: Amatsugu Date: Mon, 23 Jun 2025 20:33:23 -0400 Subject: [PATCH] Update main.rs --- src/main.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main.rs b/src/main.rs index e321fb2..aac9eae 100644 --- a/src/main.rs +++ b/src/main.rs @@ -5,15 +5,15 @@ use bevy_inspector_egui::{bevy_egui::EguiPlugin, quick::WorldInspectorPlugin}; use plugins::GamePlugin; mod components; mod resources; - +const NAME: &str = "Space Game"; fn main() { App::new() .add_plugins(( DefaultPlugins .set(WindowPlugin { primary_window: Some(Window { - title: "Phos".into(), - name: Some("phos".into()), + title: NAME.into(), + name: Some(NAME.into()), #[cfg(debug_assertions)] resolution: (1920., 1080.).into(), present_mode: PresentMode::AutoNoVsync,