Mercurial > hg > openttd
annotate src/depot_type.h @ 14396:4de60292e2a6 draft
(svn r18953) -Feature: [NoAI] allow editing AI settings while an AI is running
Only settings with the AICONFIG_INGAME flag can be editted in this way
author | yexo <yexo@openttd.org> |
---|---|
date | Fri, 29 Jan 2010 21:38:55 +0000 |
parents | bc7926153e19 |
children | e9741bd69a65 |
rev | line source |
---|---|
8768
27a5e249703b
(svn r12467) -Codechange: move DepotID to a more logical location.
rubidium <rubidium@openttd.org>
parents:
diff
changeset
|
1 /* $Id$ */ |
27a5e249703b
(svn r12467) -Codechange: move DepotID to a more logical location.
rubidium <rubidium@openttd.org>
parents:
diff
changeset
|
2 |
12778
bc7926153e19
(svn r17248) -Fix: add GPL license notice where appropriate
rubidium <rubidium@openttd.org>
parents:
8768
diff
changeset
|
3 /* |
bc7926153e19
(svn r17248) -Fix: add GPL license notice where appropriate
rubidium <rubidium@openttd.org>
parents:
8768
diff
changeset
|
4 * This file is part of OpenTTD. |
bc7926153e19
(svn r17248) -Fix: add GPL license notice where appropriate
rubidium <rubidium@openttd.org>
parents:
8768
diff
changeset
|
5 * OpenTTD 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, version 2. |
bc7926153e19
(svn r17248) -Fix: add GPL license notice where appropriate
rubidium <rubidium@openttd.org>
parents:
8768
diff
changeset
|
6 * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
bc7926153e19
(svn r17248) -Fix: add GPL license notice where appropriate
rubidium <rubidium@openttd.org>
parents:
8768
diff
changeset
|
7 * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>. |
bc7926153e19
(svn r17248) -Fix: add GPL license notice where appropriate
rubidium <rubidium@openttd.org>
parents:
8768
diff
changeset
|
8 */ |
bc7926153e19
(svn r17248) -Fix: add GPL license notice where appropriate
rubidium <rubidium@openttd.org>
parents:
8768
diff
changeset
|
9 |
8768
27a5e249703b
(svn r12467) -Codechange: move DepotID to a more logical location.
rubidium <rubidium@openttd.org>
parents:
diff
changeset
|
10 /** @file depot_type.h Header files for depots (not hangars) */ |
27a5e249703b
(svn r12467) -Codechange: move DepotID to a more logical location.
rubidium <rubidium@openttd.org>
parents:
diff
changeset
|
11 |
27a5e249703b
(svn r12467) -Codechange: move DepotID to a more logical location.
rubidium <rubidium@openttd.org>
parents:
diff
changeset
|
12 #ifndef DEPOT_TYPE_H |
27a5e249703b
(svn r12467) -Codechange: move DepotID to a more logical location.
rubidium <rubidium@openttd.org>
parents:
diff
changeset
|
13 #define DEPOT_TYPE_H |
27a5e249703b
(svn r12467) -Codechange: move DepotID to a more logical location.
rubidium <rubidium@openttd.org>
parents:
diff
changeset
|
14 |
27a5e249703b
(svn r12467) -Codechange: move DepotID to a more logical location.
rubidium <rubidium@openttd.org>
parents:
diff
changeset
|
15 typedef uint16 DepotID; |
27a5e249703b
(svn r12467) -Codechange: move DepotID to a more logical location.
rubidium <rubidium@openttd.org>
parents:
diff
changeset
|
16 struct Depot; |
27a5e249703b
(svn r12467) -Codechange: move DepotID to a more logical location.
rubidium <rubidium@openttd.org>
parents:
diff
changeset
|
17 |
27a5e249703b
(svn r12467) -Codechange: move DepotID to a more logical location.
rubidium <rubidium@openttd.org>
parents:
diff
changeset
|
18 #endif /* DEPOT_TYPE_H */ |