First pass of character data viewer

This commit is contained in:
2025-02-15 18:29:33 -05:00
parent 5f17469dc2
commit 6c9265cb78
6 changed files with 654 additions and 2 deletions
+6
View File
@@ -132,6 +132,12 @@ impl GameWindow {
.unwrap();
ui.close_menu();
}
if ui.button("Character Data").clicked() {
self.proxy
.send_event(UserEvent::OpenCharacterData(self.sim_id))
.unwrap();
ui.close_menu();
}
});
ui.menu_button("About", |ui| {
self.proxy.send_event(UserEvent::OpenAbout).unwrap();