summaryrefslogtreecommitdiff
path: root/src/table/cargo_const.h
diff options
context:
space:
mode:
authoralberth <alberth@openttd.org>2009-12-05 21:39:28 +0000
committeralberth <alberth@openttd.org>2009-12-05 21:39:28 +0000
commit41d2214e7e5a72be58e1b97a7f5f04a1b4b6660b (patch)
tree91d859e91169cf51c32960784114923f3bc6bccf /src/table/cargo_const.h
parent29606c0de66de3c40074eb086410ef39951e0d86 (diff)
downloadopenttd-41d2214e7e5a72be58e1b97a7f5f04a1b4b6660b.tar.xz
(svn r18413) -Doc: Added doxygen strings for cargo-type related enums, structs, and functions.
Diffstat (limited to 'src/table/cargo_const.h')
-rw-r--r--src/table/cargo_const.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/table/cargo_const.h b/src/table/cargo_const.h
index 686251580..17c2a7753 100644
--- a/src/table/cargo_const.h
+++ b/src/table/cargo_const.h
@@ -9,8 +9,10 @@
/** @file cargo_const.h Table of all default cargo types */
+/** Construction macro for a #CargoSpec structure. */
#define MK(bt, label, c, e, f, g, h, fr, te, ks1, ks2, ks3, ks4, ks5, l, m) \
{bt, label, c, c, e, f, {g, h}, fr, te, 0, 0, ks1, ks2, ks3, ks4, ks5, l, m, NULL, NULL, 0}
+/** Cargo types available by default. */
static const CargoSpec _default_cargo[] = {
MK( 0, 'PASS', 152, 1, 3185, 0, 24, false, TE_PASSENGERS,
STR_CARGO_PLURAL_PASSENGERS, STR_CARGO_SINGULAR_PASSENGER, STR_PASSENGERS, STR_QUANTITY_PASSENGERS, STR_ABBREV_PASSENGERS,
@@ -161,7 +163,7 @@ static const CargoSpec _default_cargo[] = {
};
-/* Table of which cargo types are available in each climate, by default */
+/** Table of cargo types available in each climate, by default */
static const CargoLabel _default_climate_cargo[NUM_LANDSCAPE][12] = {
{ 'PASS', 'COAL', 'MAIL', 'OIL_', 'LVST', 'GOOD', 'GRAI', 'WOOD', 'IORE', 'STEL', 'VALU', 33, },
{ 'PASS', 'COAL', 'MAIL', 'OIL_', 'LVST', 'GOOD', 'WHEA', 'WOOD', 34, 'PAPR', 'GOLD', 'FOOD', },