diff options
Diffstat (limited to 'src/main.c')
| -rw-r--r-- | src/main.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c new file mode 100644 index 0000000..91c8dde --- /dev/null +++ b/src/main.c @@ -0,0 +1,12 @@ +#include "graphics.h" + +int main() +{ + t_state state; + + graphics_init(&state, 640, 480); + graphics_run(&state); + graphics_quit(&state); + + return 0; +} |
