src/depot_type.h
author rubidium
Fri, 04 Jul 2008 19:00:11 +0000
changeset 11118 f66e0a4ce878
parent 9264 31f5792aa96b
permissions -rw-r--r--
(svn r13676) -Fix [FS#2126]: inactive companies from old (TTD) saves could be marked active in some cases, which then loads garbage in their statistics and such.
2186
461a2aff3486 (svn r2701) Insert Id tags into all source files
tron
parents: 2153
diff changeset
     1
/* $Id$ */
461a2aff3486 (svn r2701) Insert Id tags into all source files
tron
parents: 2153
diff changeset
     2
9264
31f5792aa96b (svn r12467) -Codechange: move DepotID to a more logical location.
rubidium
parents: 9059
diff changeset
     3
/** @file depot_type.h Header files for depots (not hangars) */
1959
fc150d5a23cf (svn r2465) Remove some unreachable code
tron
parents: 1944
diff changeset
     4
9264
31f5792aa96b (svn r12467) -Codechange: move DepotID to a more logical location.
rubidium
parents: 9059
diff changeset
     5
#ifndef DEPOT_TYPE_H
31f5792aa96b (svn r12467) -Codechange: move DepotID to a more logical location.
rubidium
parents: 9059
diff changeset
     6
#define DEPOT_TYPE_H
1650
12a20779af79 (svn r2154) - Fix: [NPF] Vehicles should no longer try to drive through the back of depots and road stations.
matthijs
parents: 1330
diff changeset
     7
9264
31f5792aa96b (svn r12467) -Codechange: move DepotID to a more logical location.
rubidium
parents: 9059
diff changeset
     8
typedef uint16 DepotID;
31f5792aa96b (svn r12467) -Codechange: move DepotID to a more logical location.
rubidium
parents: 9059
diff changeset
     9
struct Depot;
2085
ae9e92ffe168 (svn r2595) -Codechange: Introduced "IsSteepTileh" to find whether a tile is steep
celestar
parents: 2049
diff changeset
    10
9264
31f5792aa96b (svn r12467) -Codechange: move DepotID to a more logical location.
rubidium
parents: 9059
diff changeset
    11
#endif /* DEPOT_TYPE_H */