diff options
Diffstat (limited to 'main.c')
| -rw-r--r-- | main.c | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -2,6 +2,13 @@ int main(void) { - mandelbrot_print(); + /* mandelbrot_print(); */ + GConf gconf = { + .window_width = 300, + .window_height = 300 + }; + GState *gstate = graphics_init(&gconf); + graphics_run(gstate); + graphics_quit(gstate); return 0; } |
