(svn r20816) -Codechange [FS#3835]: make waypoint default names work like depots, stations and vehicles (Krille)

This commit is contained in:
rubidium
2010-09-16 16:31:57 +00:00
parent b01c63cd23
commit af18c30f30
5 changed files with 20 additions and 13 deletions

View File

@@ -15,7 +15,7 @@
#include "base_station_base.h"
struct Waypoint : SpecializedStation<Waypoint, true> {
uint16 town_cn; ///< The Nth waypoint for this town (consecutive number)
uint16 town_cn; ///< The N-1th waypoint for this town (consecutive number)
Waypoint(TileIndex tile = INVALID_TILE) : SpecializedStation<Waypoint, true>(tile) { }
~Waypoint();