summaryrefslogtreecommitdiffstats
path: root/src/game.h
blob: f404ff0350bc7d15d4830adda1e5f6a91b5736b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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);
void draw_game(struct game *g);

#endif