summaryrefslogtreecommitdiff
path: root/src/water.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2007-11-24 08:45:04 +0000
committerrubidium <rubidium@openttd.org>2007-11-24 08:45:04 +0000
commit7f72e5573a36469b2deb14769a5df5544ccf1a12 (patch)
treecf761cfea846d41d39350cafe88182e83c852d93 /src/water.h
parentb38d2e8dbb5d0b77b85a2cadeeeee992d5092683 (diff)
downloadopenttd-7f72e5573a36469b2deb14769a5df5544ccf1a12.tar.xz
(svn r11504) -Fix [FS#1467]: removing docks/ship depots could result in non-canal water where canals should have been build.
Diffstat (limited to 'src/water.h')
-rw-r--r--src/water.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/water.h b/src/water.h
new file mode 100644
index 000000000..e279119f1
--- /dev/null
+++ b/src/water.h
@@ -0,0 +1,13 @@
+/* $Id$ */
+
+/** @file water.h Functions related to water (management) */
+
+#ifndef WATER_H
+#define WATER_H
+
+void TileLoop_Water(TileIndex tile);
+void DrawShipDepotSprite(int x, int y, int image);
+void DrawCanalWater(TileIndex tile);
+void MakeWaterOrCanalDependingOnSurroundings(TileIndex t, Owner o);
+
+#endif /* WATER_H */