author | unc0rr |
Sat, 10 Jan 2009 15:50:27 +0000 | |
changeset 1637 | 897b37fc4966 |
parent 1415 | 6fbfee0e113a |
child 1967 | 213d368a002f |
permissions | -rw-r--r-- |
583 | 1 |
/* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
883 | 3 |
* Copyright (c) 2005-2008 Andrey Korotaev <unC0Rr@gmail.com> |
583 | 4 |
* |
5 |
* This program is free software; you can redistribute it and/or modify |
|
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
8 |
* |
|
9 |
* This program is distributed in the hope that it will be useful, |
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
13 |
* |
|
14 |
* You should have received a copy of the GNU General Public License |
|
15 |
* along with this program; if not, write to the Free Software |
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
17 |
*/ |
|
18 |
||
19 |
#include <QString> |
|
20 |
#include <QDir> |
|
21 |
#include <QStringList> |
|
616 | 22 |
#include <QColor> |
583 | 23 |
|
24 |
extern QString * cProtoVer; |
|
907 | 25 |
extern QString * cVersionString; |
583 | 26 |
extern QString * cDataDir; |
27 |
||
28 |
extern QDir * bindir; |
|
29 |
extern QDir * cfgdir; |
|
30 |
extern QDir * datadir; |
|
31 |
||
32 |
extern QStringList * Themes; |
|
1210 | 33 |
extern QStringList * mapList; |
607 | 34 |
|
35 |
extern QString * cDefaultAmmoStore; |
|
616 | 36 |
|
37 |
extern QColor * color1; |
|
38 |
extern QColor * color2; |
|
39 |
extern QColor * color3; |
|
40 |
extern QColor * color4; |
|
41 |
extern QColor * color5; |
|
42 |
extern QColor * color6; |
|
654 | 43 |
|
44 |
extern QString * netHost; |
|
45 |
extern quint16 netPort; |
|
1415
6fbfee0e113a
Allow build without net game server: introduce -DWITH_SERVER configuration parameter
unc0rr
parents:
1210
diff
changeset
|
46 |
|
6fbfee0e113a
Allow build without net game server: introduce -DWITH_SERVER configuration parameter
unc0rr
parents:
1210
diff
changeset
|
47 |
extern bool haveServer; |