summaryrefslogtreecommitdiff
path: root/src/station.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2007-09-09 10:13:17 +0000
committerrubidium <rubidium@openttd.org>2007-09-09 10:13:17 +0000
commit0ca9fd7dc2ff8077c188e000b7569e3ff1072301 (patch)
tree43502b2af33d4a35c7e2e2fbd6f29b3cc60b4ba8 /src/station.h
parent10ea6cd13c576d2a339d1ac65c8c53d0abdb16be (diff)
downloadopenttd-0ca9fd7dc2ff8077c188e000b7569e3ff1072301.tar.xz
(svn r11065) -Documentation [FS#1186]: of the dirty marking/repainting subsystem. Patch by Progman.
Diffstat (limited to 'src/station.h')
-rw-r--r--src/station.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/station.h b/src/station.h
index bbae591d6..fefca32fa 100644
--- a/src/station.h
+++ b/src/station.h
@@ -173,7 +173,19 @@ public:
virtual ~Station();
void AddFacility(byte new_facility_bit, TileIndex facil_xy);
+
+ /**
+ * Mark the sign of a station dirty for repaint.
+ *
+ * @ingroup dirty
+ */
void MarkDirty() const;
+
+ /**
+ * Marks the tiles of the station as dirty.
+ *
+ * @ingroup dirty
+ */
void MarkTilesDirty(bool cargo_change) const;
bool TileBelongsToRailStation(TileIndex tile) const;
uint GetPlatformLength(TileIndex tile, DiagDirection dir) const;