unused stuff

This commit is contained in:
filipriec
2025-03-26 00:16:38 +01:00
parent 9564bd8524
commit 92045a4e67

View File

@@ -118,14 +118,4 @@ impl IntroState {
pub fn previous_option(&mut self) { pub fn previous_option(&mut self) {
self.selected_option = if self.selected_option == 0 { 2 } else { self.selected_option - 1 }; self.selected_option = if self.selected_option == 0 { 2 } else { self.selected_option - 1 };
} }
pub fn handle_selection(&self, app_state: &mut crate::state::state::AppState) {
match self.selected_option {
0 => { /* Continue logic */ }
1 => {}
2 => {}
_ => {}
}
}
} }