diff options
Diffstat (limited to 'src/world.h')
| -rw-r--r-- | src/world.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/world.h b/src/world.h new file mode 100644 index 0000000..9f18137 --- /dev/null +++ b/src/world.h @@ -0,0 +1,13 @@ +#ifndef GAME_WORLD_H +#define GAME_WORLD_H + +#include "player.h" + +typedef +struct +{ + Player players[2]; +} +World; + +#endif |
