OpenTTD-patches/road_cmd.h
tron ed26c5e14c (svn r5723) - Move the declaration of DrawRoadDepotSprite() out of functions.h (but I'm not too happy with the new header)
- Use DiagDirection instead of plain int for the orientation of the depot graphics
- Rename the associated data tables with sprites to something more meaningful
2006-08-03 06:44:54 +00:00

11 lines
142 B
C

/* $Id$ */
#ifndef ROAD_CMD_H
#define ROAD_CMD_H
#include "direction.h"
void DrawRoadDepotSprite(int x, int y, DiagDirection dir);
#endif