(svn r11504) -Fix [FS#1467]: removing docks/ship depots could result in non-canal water where canals should have been build.

This commit is contained in:
rubidium
2007-11-24 08:45:04 +00:00
parent c8add52504
commit ea072322fa
7 changed files with 57 additions and 16 deletions

13
src/water.h Normal file
View File

@@ -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 */