make buttons functional

This commit is contained in:
geoffsee
2025-07-02 19:49:50 -04:00
parent f5de8e943b
commit 6f94c38080
4 changed files with 35 additions and 27 deletions

View File

@@ -2,4 +2,14 @@ use bevy::prelude::*;
/// System display component for showing detailed system information
#[derive(Component)]
pub struct SystemDisplay;
pub struct SystemDisplay;
/// Component for marking UI elements as system indicators
#[derive(Component)]
pub struct SystemIndicator {
pub system_id: String,
}
/// Component for marking the main system display area
#[derive(Component)]
pub struct SystemDisplayArea;