Add bindable keyboard shortcuts

This commit is contained in:
2025-03-03 00:06:14 -05:00
parent fcfb75fead
commit bbffde50ec
5 changed files with 411 additions and 15 deletions
+2
View File
@@ -3,6 +3,7 @@ use egui::{Context, ViewportBuilder, ViewportId};
pub use game::GameWindow;
pub use gdb::GdbServerWindow;
pub use input::InputWindow;
pub use shortcuts::ShortcutsWindow;
pub use vip::{
BgMapWindow, CharacterDataWindow, FrameBufferWindow, ObjectWindow, RegisterWindow, WorldWindow,
};
@@ -15,6 +16,7 @@ mod game;
mod game_screen;
mod gdb;
mod input;
mod shortcuts;
mod utils;
mod vip;