src/depot_type.h
author frosch
Sat, 13 Dec 2008 18:25:42 +0000
changeset 10419 d9a1fa739477
parent 8768 4bcc90746175
permissions -rw-r--r--
(svn r14672) -Fix [FS#2444]: Property 7 and callback 12 were broken for aircraft.
Now callback 12 is properly called also for 'mail'.
If the callback is not used, 'mail' uses 1/4 of property 7 (rounded up).
8768
4bcc90746175 (svn r12467) -Codechange: move DepotID to a more logical location.
rubidium
parents:
diff changeset
     1
/* $Id$ */
4bcc90746175 (svn r12467) -Codechange: move DepotID to a more logical location.
rubidium
parents:
diff changeset
     2
4bcc90746175 (svn r12467) -Codechange: move DepotID to a more logical location.
rubidium
parents:
diff changeset
     3
/** @file depot_type.h Header files for depots (not hangars) */
4bcc90746175 (svn r12467) -Codechange: move DepotID to a more logical location.
rubidium
parents:
diff changeset
     4
4bcc90746175 (svn r12467) -Codechange: move DepotID to a more logical location.
rubidium
parents:
diff changeset
     5
#ifndef DEPOT_TYPE_H
4bcc90746175 (svn r12467) -Codechange: move DepotID to a more logical location.
rubidium
parents:
diff changeset
     6
#define DEPOT_TYPE_H
4bcc90746175 (svn r12467) -Codechange: move DepotID to a more logical location.
rubidium
parents:
diff changeset
     7
4bcc90746175 (svn r12467) -Codechange: move DepotID to a more logical location.
rubidium
parents:
diff changeset
     8
typedef uint16 DepotID;
4bcc90746175 (svn r12467) -Codechange: move DepotID to a more logical location.
rubidium
parents:
diff changeset
     9
struct Depot;
4bcc90746175 (svn r12467) -Codechange: move DepotID to a more logical location.
rubidium
parents:
diff changeset
    10
4bcc90746175 (svn r12467) -Codechange: move DepotID to a more logical location.
rubidium
parents:
diff changeset
    11
#endif /* DEPOT_TYPE_H */