summaryrefslogtreecommitdiffstats
path: root/knights/challenge_game.h
blob: 132940e7f326c2131a8948ca9c1e8a23ef8acd0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/***************************************************************************
                           game.h  -  description
                             -------------------
    begin                : Mon Jan 7 2002
    copyright            : (C) 2003 by Eric Faccer
    email                : e.faccer@qut.edu.au
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/

#ifndef GAME_H
#define GAME_H
#include <tqstring.h>

class Challenge_Game {

	public:
		Challenge_Game(TQString seeker, TQString seeker_rating, TQString match_kind, TQString rated, TQString time, TQString incr, TQString uid);

	public:

		int id() { return _id; };
		int clock() { return _clock; };
		int increment() { return _increment; };
		bool rated() { return _rated; };
		int rating() { return _player_rating; };
		TQString _player;
		TQString _match_type;
		TQString _is_rated;

	private:
		int _id;
		bool _rated;
		int _player_rating;
		int _clock;
		int _increment;
};

#endif