2007-11-24 08:45:04 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
/** @file water.h Functions related to water (management) */
|
|
|
|
|
|
|
|
#ifndef WATER_H
|
|
|
|
#define WATER_H
|
|
|
|
|
|
|
|
void TileLoop_Water(TileIndex tile);
|
2008-01-22 17:48:08 +00:00
|
|
|
bool FloodHalftile(TileIndex t);
|
|
|
|
|
|
|
|
void ConvertGroundTilesIntoWaterTiles();
|
|
|
|
|
2007-11-24 08:45:04 +00:00
|
|
|
void DrawShipDepotSprite(int x, int y, int image);
|
2008-02-06 16:12:23 +00:00
|
|
|
void DrawWaterClassGround(const struct TileInfo *ti);
|
2008-01-22 17:48:08 +00:00
|
|
|
void DrawShoreTile(Slope tileh);
|
|
|
|
|
2008-02-02 09:28:43 +00:00
|
|
|
void MakeWaterKeepingClass(TileIndex tile, Owner o);
|
|
|
|
void SetWaterClassDependingOnSurroundings(TileIndex t);
|
2007-11-24 08:45:04 +00:00
|
|
|
|
|
|
|
#endif /* WATER_H */
|