src/depot_type.h
author rubidium
Thu, 18 Dec 2008 12:23:08 +0000
changeset 10436 8d3a9fbe8f19
parent 8768 4bcc90746175
permissions -rw-r--r--
(svn r14689) -Change: make configure die on commonly made user mistakes, like not having SDL development files or zlib headers installed; you can still compile a dedicated server or a binary without zlib, but you have to explicitly force it.
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 */