Added hex editor and basic pattern parsing/highlighting

This commit is contained in:
WerWolv
2020-11-10 15:26:38 +01:00
parent 83331429b7
commit cbe302a004
41 changed files with 56013 additions and 0 deletions

15
source/main.cpp Normal file
View File

@@ -0,0 +1,15 @@
#include "window.hpp"
#include "views/view_hexeditor.hpp"
#include "views/view_pattern.hpp"
int main() {
hex::Window window;
auto* hexEditor = window.addView<hex::ViewHexEditor>();
window.addView<hex::ViewPattern>(hexEditor);
window.loop();
return 0;
}