feat(editor): Ctrl+N and Ctrl+O shortcuts for New/Load dialogs

This commit is contained in:
Kelsi 2026-05-05 07:31:20 -07:00
parent 97f1d9c003
commit 623aeff417
2 changed files with 7 additions and 2 deletions

View file

@ -17,6 +17,8 @@ public:
void render(EditorApp& app);
void processActions(EditorApp& app);
void openNewTerrainDialog() { showNewDialog_ = true; }
void openLoadDialog() { showLoadDialog_ = true; }
PaintMode getPaintMode() const { return paintMode_; }