summaryrefslogtreecommitdiffstats
path: root/src/game.h
blob: abd56386bedc83c490d72419b9f7048df6122a06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef GAME_H
#define GAME_H

#include "player.h"

struct game {
	struct player *players[2];
};

struct game *new_game(void);
void free_game(struct game *g);

#endif