adventskalender-2009/src/config.c
Aaron Mueller e12b581fc8 Build a initial structure to build the game
This includes:
  * Change the Makefile so we can build the source with SDL
  * Create a config file for all global variables
  * Initialize a simple game loop to see something on the screen
  * Stub for building a drawing lib
  * Modify the README a little bit
2009-12-07 16:57:30 +01:00

11 lines
174 B
C

#include "SDL.h"
#include <stdbool.h>
#include "config.h"
// Initialization for the global variables
SDL_Surface *screen = NULL;
SDL_Event event;
bool gameRunning = true;