From 6a80b1b70ec069b051c0e31aafac6eb596e20261 Mon Sep 17 00:00:00 2001 From: Charles Date: Tue, 19 May 2020 13:22:59 +0200 Subject: Back to basic SDL application boilerplate --- inc/config.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 inc/config.h (limited to 'inc/config.h') diff --git a/inc/config.h b/inc/config.h new file mode 100644 index 0000000..4085dba --- /dev/null +++ b/inc/config.h @@ -0,0 +1,9 @@ +#ifndef CONFIG_H +# define CONFIG_H + +# define MANDEL_WINDOW_WIDTH 640 +# define MANDEL_WINDOW_HEIGHT 480 + +# define MANDEL_WINDOW_TITLE "Mandelbrot" + +#endif -- cgit