Fix color assignment by mamer
[capablanca.git] / lasker-2.2.3 / bots / mamer / TourneyParameters.hh
1 //--------------------------------------------------------------------------
2 // TourneyParameters.hh - Class header for the TourneyParameters class
3 //
4 // Matthew E. Moses & Michael A. Long
5 //
6 // $Revision: 1.3 $
7 // $Date: 1998/09/10 19:58:41 $
8 //
9 // $Author: mlong $
10 // $Locker:  $
11 //
12 // $Log: TourneyParameters.hh,v $
13 // Revision 1.3  1998/09/10 19:58:41  mlong
14 // lots of little bug fixes and a few new features.
15 //
16 // Revision 1.2  1998/02/12 18:44:25  mlong
17 // *** empty log message ***
18 //
19 // Revision 1.2  1997/10/23 19:56:12  chess
20 // *** empty log message ***
21 //
22 // Revision 1.1  1997/05/02 23:52:06  chess
23 // Initial revision
24 //
25 //
26 //--------------------------------------------------------------------------
27
28 #ifndef _TOURNEYPARAMETERS_
29 #define _TOURNEYPARAMETERS_
30
31 class TourneyParameters {
32  public:
33     TourneyParameters();
34     ~TourneyParameters();
35     
36  private:
37
38  public:
39
40   int time;
41   int inc;
42   char variant;
43   int wild;
44   char mode;
45   char style;
46   int ratingHigh;
47   int ratingLow;
48   int rounds;
49   int currentRound;
50   int maxPlayers;
51
52  private:
53
54 };
55
56 #endif
57