Changeset - r8772:fb76508ac3ff
[Not reviewed]
master
0 2 0
rubidium - 16 years ago 2008-03-28 16:36:59
rubidium@openttd.org
(svn r12471) -Codechange: move SignID to a more logical location.
2 files changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/openttd.h
Show inline comments
 
@@ -17,13 +17,12 @@ typedef uint16 EngineID;
 
typedef uint16 UnitID;
 

	
 
typedef EngineID *EngineList; ///< engine list type placeholder acceptable for C code (see helpers.cpp)
 

	
 
/* IDs used in Pools */
 
typedef uint16 WaypointID;
 
typedef uint16 SignID;
 
typedef uint16 EngineRenewID;
 

	
 
enum GameModes {
 
	GM_MENU,
 
	GM_NORMAL,
 
	GM_EDITOR
src/signs.h
Show inline comments
 
@@ -4,12 +4,13 @@
 

	
 
#ifndef SIGNS_H
 
#define SIGNS_H
 

	
 
#include "oldpool.h"
 

	
 
typedef uint16 SignID;
 
struct Sign;
 
DECLARE_OLD_POOL(Sign, Sign, 2, 16000)
 

	
 
struct Sign : PoolItem<Sign, SignID, &_Sign_pool> {
 
	char *name;
 
	ViewportSign sign;
0 comments (0 inline, 0 general)