1use bevy::state::state::States; 2 3#[derive(Debug, Clone, Copy, Default, Eq, PartialEq, Hash, States)] 4pub enum AppState { 5 #[default] 6 Home, 7 Monitoring, 8}