From aea23b389a5eba09b3865209a08843e66481dd54 Mon Sep 17 00:00:00 2001 From: Charles Date: Sun, 10 May 2020 12:13:55 +0200 Subject: Initial commit, SDL boilerplate --- src/main.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/main.c (limited to 'src/main.c') 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; +} -- cgit