Mercurial > hg > openttd
view src/newgrf_canal.h @ 7481:a811420eaa26 draft
(svn r10992) -Fix [FS#1132]: huge amount of vehicles in the "ungrouped" group. Patch by frosch.
author | rubidium <rubidium@openttd.org> |
---|---|
date | Mon, 27 Aug 2007 21:33:26 +0000 |
parents | 7e15dfbfb126 |
children | bf5f533a604f |
line wrap: on
line source
/* $Id$ */ #ifndef NEWGRF_CANAL_H #define NEWGRF_CANAL_H /** List of different canal 'features'. * Each feature gets an entry in the canal spritegroup table */ enum CanalFeature { CF_WATERSLOPE, CF_LOCKS, CF_DIKES, CF_ICON, CF_DOCKS, CF_END, }; /** Table of canal 'feature' sprite groups */ extern const SpriteGroup *_canal_sg[CF_END]; /** Lookup the base sprite to use for a canal. * @param feature Which canal feature we want. * @param tile Tile index of canal, if appropriate. * @return Base sprite returned by GRF, or 0 if none. */ SpriteID GetCanalSprite(CanalFeature feature, TileIndex tile); #endif /* NEWGRF_CANAL_H */