/* * game.h * * You just lost the game. * */ #import "config.h" #import "graphics.h" #import "vector.h" // Game state. typedef struct { graphics *gfx; int done; vector player_pos; } game_state; // Contains the main game loop. void run_game(graphics *g, game_settings settings);