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
+2
View File
@@ -1,4 +1,5 @@
pub use about::AboutWindow;
pub use character_data::CharacterDataWindow;
use egui::{Context, ViewportBuilder, ViewportId};
pub use game::GameWindow;
pub use gdb::GdbServerWindow;
@@ -8,6 +9,7 @@ use winit::event::KeyEvent;
use crate::emulator::SimId;
mod about;
mod character_data;
mod game;
mod game_screen;
mod gdb;