1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-16 02:59:10 +00:00

(svn r12471) -Codechange: move SignID to a more logical location.

This commit is contained in:
rubidium
2008-03-28 16:36:59 +00:00
parent 4c63dd074e
commit 0f552a88a7
2 changed files with 1 additions and 1 deletions

View File

@@ -20,7 +20,6 @@ typedef EngineID *EngineList; ///< engine list type placeholder acceptable for C
/* IDs used in Pools */
typedef uint16 WaypointID;
typedef uint16 SignID;
typedef uint16 EngineRenewID;
enum GameModes {

View File

@@ -7,6 +7,7 @@
#include "oldpool.h"
typedef uint16 SignID;
struct Sign;
DECLARE_OLD_POOL(Sign, Sign, 2, 16000)