(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
This commit is contained in:
tron
2006-08-03 06:44:54 +00:00
parent 76ea272c9c
commit b0135b4381
5 changed files with 28 additions and 20 deletions

10
road_cmd.h Normal file
View File

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