moved form.rs into the state where it really belongs to

This commit is contained in:
filipriec
2025-03-25 21:23:52 +01:00
parent 45fff34c4c
commit 4ced1a36d4
15 changed files with 17 additions and 13 deletions

View File

@@ -112,7 +112,7 @@ impl IntroState {
}
pub fn next_option(&mut self) {
self.selected_option = (self.selected_option + 1) % 3; // Now 3 options
self.selected_option = (self.selected_option + 1) % 3;
}
pub fn previous_option(&mut self) {