mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-03-29 00:10:02 -05:00
Added hex editor and basic pattern parsing/highlighting
This commit is contained in:
15
source/main.cpp
Normal file
15
source/main.cpp
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user