mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-19 15:25:39 +00:00
13 lines
323 B
C
13 lines
323 B
C
/* $Id$ */
|
|
|
|
#ifndef NEWGRF_RAILTYPE_H
|
|
#define NEWGRF_RAILTYPE_H
|
|
|
|
#include "rail.h"
|
|
|
|
SpriteID GetCustomRailSprite(const RailtypeInfo *rti, TileIndex tile, RailTypeSpriteGroup rtsg, bool upper_halftile = false);
|
|
|
|
uint8 GetReverseRailTypeTranslation(RailType railtype, const GRFFile *grffile);
|
|
|
|
#endif /* NEWGRF_RAILTYPE_H */
|