This commit is contained in:
Shadow15510 2021-06-03 17:26:32 +02:00
parent 0d06b95554
commit 8f94797d9c
2 changed files with 5 additions and 0 deletions

Binary file not shown.

View File

@ -3,6 +3,8 @@
#include <gint/defs/types.h>
// Duration for internal clock (ms)
#define ENGINE_TICK 50
#define CURSOR_TICK 150
@ -46,6 +48,9 @@ struct game
// Time
int time, total_time;
// Planes
struct plane *planes[NB_PLANES + 1];
// Grid for epidemologic model
struct grid grid;
};