adventskalender-2009/src/config.c
2009-12-14 00:28:06 +01:00

12 lines
195 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;
int *terrain = NULL;