mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-09 19:10:38 +00:00
21 lines
490 B
C
21 lines
490 B
C
/* $Id$ */
|
|
|
|
/** @file water.h Functions related to water (management) */
|
|
|
|
#ifndef WATER_H
|
|
#define WATER_H
|
|
|
|
void TileLoop_Water(TileIndex tile);
|
|
bool FloodHalftile(TileIndex t);
|
|
|
|
void ConvertGroundTilesIntoWaterTiles();
|
|
|
|
void DrawShipDepotSprite(int x, int y, int image);
|
|
void DrawWaterClassGround(const struct TileInfo *ti);
|
|
void DrawShoreTile(Slope tileh);
|
|
|
|
void MakeWaterKeepingClass(TileIndex tile, Owner o);
|
|
void SetWaterClassDependingOnSurroundings(TileIndex t);
|
|
|
|
#endif /* WATER_H */
|