src/water.h
author glx
Sun, 18 May 2008 16:50:49 +0000
branchnoai
changeset 10620 3dfc77d25d66
parent 9732 f8eb3e208514
permissions -rw-r--r--
(svn r13164) [NoAI] -Fix: compilation was not possible with MSVC90 (missing include dir)
/* $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 */