#ifndef GAME_H_INCLUDED #define GAME_H_INCLUDED #include /* simulation/game framework */ extern double delta; /* simulation time delta in seconds */ #define DEFAULT_DELTA 0.01 extern int width; /* game canvas width */ extern int height; /* game canvas height */ #define DEFAULT_WIDTH 1000 #define DEFAULT_HEIGHT 1000 extern GtkWidget* canvas; /* game canvas object */ #endif