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

#include <list>
#include "player.h"

class Game{
	private:
		std::list<Player> players;
	public:
		Game();
		~Game();
};

#endif // GAME_H