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

#include "player.h"

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

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

#endif