Move 65816 language definition to a widgets namespace

This commit is contained in:
scawful
2022-07-09 16:51:14 -04:00
parent e9c8152453
commit c49e83839c
4 changed files with 86 additions and 53 deletions

16
src/gui/widgets.h Normal file
View File

@@ -0,0 +1,16 @@
#ifndef YAZE_GUI_WIDGETS_H
#define YAZE_GUI_WIDGETS_H
#include <ImGuiColorTextEdit/TextEditor.h>
namespace yaze {
namespace gui {
namespace widgets {
TextEditor::LanguageDefinition GetAssemblyLanguageDef();
}
} // namespace gui
} // namespace yaze
#endif