src/newgrf_cargo.h
author truelight
Mon, 19 Mar 2007 12:30:11 +0000
branchnoai
changeset 9475 58c20c0e394f
parent 6474 24e7ceeb25f5
child 6674 64f4781b4653
child 9906 6f41b8713b65
permissions -rw-r--r--
(svn r9320) [NoAI] -Fix: added some doxygen comments to make doxygen happy
/* $Id$ */

#ifndef NEWGRF_CARGO_H
#define NEWGRF_CARGO_H

enum {
	CC_NOAVAILABLE  = 0,
	CC_PASSENGERS   = 1 << 0,
	CC_MAIL         = 1 << 1,
	CC_EXPRESS      = 1 << 2,
	CC_ARMOURED     = 1 << 3,
	CC_BULK         = 1 << 4,
	CC_PIECE_GOODS  = 1 << 5,
	CC_LIQUID       = 1 << 6,
	CC_REFRIGERATED = 1 << 7,
};

static const CargoID CT_DEFAULT      = NUM_CARGO + 0;
static const CargoID CT_PURCHASE     = NUM_CARGO + 1;
static const CargoID CT_DEFAULT_NA   = NUM_CARGO + 2;

#endif /* NEWGRF_CARGO_H */