#ifndef GAME_WORLD_H #define GAME_WORLD_H #include "player.h" typedef struct { Player players[2]; } World; extern World world; #endif