(svn r11442) -Feature: make news messages related to the industry (production) changes better configurable; you can now disable news messages popping up for industries you are not servicing. Patch by Alberth.

This commit is contained in:
rubidium
2007-11-15 22:20:33 +00:00
parent 70c7a44a4d
commit 4dcd71038d
6 changed files with 368 additions and 157 deletions

View File

@@ -14,6 +14,7 @@
#include "newgrf_station.h"
#include "cargopacket.h"
#include <list>
#include <set>
struct Station;
struct RoadStop;
@@ -241,6 +242,11 @@ enum CatchmentArea {
void ModifyStationRatingAround(TileIndex tile, PlayerID owner, int amount, uint radius);
/** A set of stations (\c const \c Station* ) */
typedef std::set<Station*> StationSet;
StationSet FindStationsAroundIndustryTile(TileIndex tile, int w, int h);
void ShowStationViewWindow(StationID station);
void UpdateAllStationVirtCoord();