File diff r12410:4bb7a12b2f71 → r12411:4ac6b3dd713f
src/waypoint.h
Show inline comments
 
@@ -11,27 +11,26 @@
 
#include "station_base.h"
 
#include "town_type.h"
 
#include "viewport_type.h"
 
#include "date_type.h"
 
#include "core/pool_type.hpp"
 

	
 
typedef Pool<Waypoint, WaypointID, 32, 64000> WaypointPool;
 
extern WaypointPool _waypoint_pool;
 

	
 
struct Waypoint : WaypointPool::PoolItem<&_waypoint_pool> {
 
	TileIndex xy;      ///< Tile of waypoint
 

	
 
	TownID town_index; ///< Town associated with the waypoint
 
	Town *town;        ///< Town associated with the waypoint
 
	uint16 town_cn;    ///< The Nth waypoint for this town (consecutive number)
 
	StringID string_id;///< C000-C03F have special meaning in old games
 
	char *name;        ///< Custom name. If not set, town + town_cn is used for naming
 

	
 
	ViewportSign sign; ///< Dimensions of sign (not saved)
 
	Date build_date;   ///< Date of construction
 
	OwnerByte owner;   ///< Whom this waypoint belongs to
 

	
 
	StationSpecList spec; ///< NewGRF specification of the station
 

	
 
	byte delete_ctr;   ///< Delete counter. If greater than 0 then it is decremented until it reaches 0; the waypoint is then is deleted.
 

	
 
	Waypoint(TileIndex tile = INVALID_TILE) : xy(tile) { }
 
	~Waypoint();