You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
OpenTTD-patches/src/water.h

16 lines
419 B
C

/* $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 MakeWaterOrCanalDependingOnOwner(TileIndex tile, Owner o);
void MakeWaterOrCanalDependingOnSurroundings(TileIndex t, Owner o);
bool FloodHalftile(TileIndex t);
#endif /* WATER_H */