21 lines
329 B
C
21 lines
329 B
C
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <assert.h>
|
||
|
#include <math.h>
|
||
|
#include <time.h>
|
||
|
|
||
|
#include <gdk/gdkkeysyms.h>
|
||
|
#include <gtk/gtk.h>
|
||
|
|
||
|
#include "game.h"
|
||
|
|
||
|
double delta = DEFAULT_DELTA; /* seconds */
|
||
|
|
||
|
unsigned int width = DEFAULT_WIDTH;
|
||
|
unsigned int height = DEFAULT_HEIGHT;
|
||
|
|
||
|
/* Graphics System
|
||
|
*/
|
||
|
GtkWidget * canvas;
|
||
|
|