(svn r11947) -Feature: Make use of new sprites added by Action5 type 0D.

Tiles which only consist of shore do not flood anymore, instead they get removed if they are no longer connected to flooding water.
This commit is contained in:
frosch
2008-01-22 17:48:08 +00:00
parent b99c83246b
commit 49d2087d7f
6 changed files with 263 additions and 176 deletions

View File

@@ -6,10 +6,15 @@
#define WATER_H
void TileLoop_Water(TileIndex tile);
void DrawShipDepotSprite(int x, int y, int image);
void DrawCanalWater(TileIndex tile);
void MakeWaterOrCanalDependingOnOwner(TileIndex tile, Owner o);
void MakeWaterOrCanalDependingOnSurroundings(TileIndex t, Owner o);
bool FloodHalftile(TileIndex t);
void ConvertGroundTilesIntoWaterTiles();
void DrawShipDepotSprite(int x, int y, int image);
void DrawCanalWater(TileIndex tile);
void DrawShoreTile(Slope tileh);
void MakeWaterOrCanalDependingOnOwner(TileIndex tile, Owner o);
void MakeWaterOrCanalDependingOnSurroundings(TileIndex t, Owner o);
#endif /* WATER_H */