add memory_editor.h for hex editor and rom diff checker

This commit is contained in:
scawful
2024-07-19 16:34:37 -04:00
parent afbf0d888b
commit d73a970e57
3 changed files with 94 additions and 39 deletions

View File

@@ -14,6 +14,7 @@
#include "app/core/constants.h"
#include "app/core/project.h"
#include "app/editor/code/assembly_editor.h"
#include "app/editor/code/memory_editor.h"
#include "app/editor/context/gfx_context.h"
#include "app/editor/dungeon_editor.h"
#include "app/editor/graphics/graphics_editor.h"
@@ -118,6 +119,7 @@ class MasterEditor : public SharedRom,
PaletteEditor palette_editor_;
ScreenEditor screen_editor_;
SpriteEditor sprite_editor_;
MemoryEditorWithDiffChecker memory_editor_;
ImVector<int> active_tabs_;
std::vector<Editor*> active_editors_;