summaryrefslogtreecommitdiff
path: root/src/base_station_base.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/base_station_base.h')
-rw-r--r--src/base_station_base.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/base_station_base.h b/src/base_station_base.h
index 5f99adab8..a3b28eb08 100644
--- a/src/base_station_base.h
+++ b/src/base_station_base.h
@@ -23,18 +23,6 @@ struct StationSpecList {
uint8 localidx; ///< Station ID within GRF of station
};
-/** Represents the covered area */
-struct TileArea {
- /** Just construct this tile area */
- TileArea() {}
- /** Construct this tile area with some set values */
- TileArea(TileIndex tile, uint8 w, uint8 h) : tile(tile), w(w), h(h) {}
-
- TileIndex tile; ///< The base tile of the area
- uint8 w; ///< The width of the area
- uint8 h; ///< The height of the area
-};
-
/** StationRect - used to track station spread out rectangle - cheaper than scanning whole map */
struct StationRect : public Rect {