mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-02-09 13:58:44 -06:00
16 lines
278 B
C++
16 lines
278 B
C++
#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;
|
|
}
|