aboutsummaryrefslogtreecommitdiff
path: root/main.c
blob: 494ee2c4045350722606c244a09622f8d5784aca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "header.h"

int main(void)
{
    /* mandelbrot_print(); */
    GConf gconf = {
        .window_width = 300,
        .window_height = 300
    };
    GState *gstate = graphics_init(&gconf);
    graphics_run(gstate);
    graphics_quit(gstate);
    return 0;
}