summaryrefslogtreecommitdiff
path: root/src/cargotype.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-03-28 04:57:32 +0000
committerrubidium <rubidium@openttd.org>2008-03-28 04:57:32 +0000
commit0e73ac21986a3b1224f63d220b9dbfb81a91d239 (patch)
tree054d82fc3797d11e8a32609a8112e9799cc33682 /src/cargotype.h
parent55676e3b6c5ba0e09c605f6dadac5d76382f2bdc (diff)
downloadopenttd-0e73ac21986a3b1224f63d220b9dbfb81a91d239.tar.xz
(svn r12458) -Codechange: split acquiring the sprite ID for cargos from the actual drawing of them.
Diffstat (limited to 'src/cargotype.h')
-rw-r--r--src/cargotype.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cargotype.h b/src/cargotype.h
index 67b63e3dd..7d770b1b9 100644
--- a/src/cargotype.h
+++ b/src/cargotype.h
@@ -59,6 +59,8 @@ extern CargoSpec _cargo[NUM_CARGO];
void SetupCargoForClimate(LandscapeID l);
/* Retrieve cargo details for the given cargo ID */
const CargoSpec *GetCargo(CargoID c);
+/* Get the cargo icon for a given cargo ID */
+SpriteID GetCargoSprite(CargoID i);
/* Get the cargo ID with the cargo label */
CargoID GetCargoIDByLabel(CargoLabel cl);
CargoID GetCargoIDByBitnum(uint8 bitnum);