author | smatz |
Thu, 17 Jan 2008 19:49:06 +0000 | |
changeset 8838 | 1549b7f9d0a8 |
parent 8828 | 3caed7db62de |
child 8876 | a0b7938c6082 |
permissions | -rw-r--r-- |
8444
9317090e9c8c
(svn r11504) -Fix [FS#1467]: removing docks/ship depots could result in non-canal water where canals should have been build.
rubidium
parents:
diff
changeset
|
1 |
/* $Id$ */ |
9317090e9c8c
(svn r11504) -Fix [FS#1467]: removing docks/ship depots could result in non-canal water where canals should have been build.
rubidium
parents:
diff
changeset
|
2 |
|
9317090e9c8c
(svn r11504) -Fix [FS#1467]: removing docks/ship depots could result in non-canal water where canals should have been build.
rubidium
parents:
diff
changeset
|
3 |
/** @file water.h Functions related to water (management) */ |
9317090e9c8c
(svn r11504) -Fix [FS#1467]: removing docks/ship depots could result in non-canal water where canals should have been build.
rubidium
parents:
diff
changeset
|
4 |
|
9317090e9c8c
(svn r11504) -Fix [FS#1467]: removing docks/ship depots could result in non-canal water where canals should have been build.
rubidium
parents:
diff
changeset
|
5 |
#ifndef WATER_H |
9317090e9c8c
(svn r11504) -Fix [FS#1467]: removing docks/ship depots could result in non-canal water where canals should have been build.
rubidium
parents:
diff
changeset
|
6 |
#define WATER_H |
9317090e9c8c
(svn r11504) -Fix [FS#1467]: removing docks/ship depots could result in non-canal water where canals should have been build.
rubidium
parents:
diff
changeset
|
7 |
|
9317090e9c8c
(svn r11504) -Fix [FS#1467]: removing docks/ship depots could result in non-canal water where canals should have been build.
rubidium
parents:
diff
changeset
|
8 |
void TileLoop_Water(TileIndex tile); |
9317090e9c8c
(svn r11504) -Fix [FS#1467]: removing docks/ship depots could result in non-canal water where canals should have been build.
rubidium
parents:
diff
changeset
|
9 |
void DrawShipDepotSprite(int x, int y, int image); |
9317090e9c8c
(svn r11504) -Fix [FS#1467]: removing docks/ship depots could result in non-canal water where canals should have been build.
rubidium
parents:
diff
changeset
|
10 |
void DrawCanalWater(TileIndex tile); |
8601
6b2ddb5baade
(svn r11666) -Fix (r11504): when removing buoys, return to water or canal depending on their owner
glx
parents:
8444
diff
changeset
|
11 |
void MakeWaterOrCanalDependingOnOwner(TileIndex tile, Owner o); |
8444
9317090e9c8c
(svn r11504) -Fix [FS#1467]: removing docks/ship depots could result in non-canal water where canals should have been build.
rubidium
parents:
diff
changeset
|
12 |
void MakeWaterOrCanalDependingOnSurroundings(TileIndex t, Owner o); |
8828
3caed7db62de
(svn r11898) -Fix: Update neighboured canals + signals when flooding non-flat tiles, too.
frosch
parents:
8604
diff
changeset
|
13 |
bool FloodHalftile(TileIndex t); |
8444
9317090e9c8c
(svn r11504) -Fix [FS#1467]: removing docks/ship depots could result in non-canal water where canals should have been build.
rubidium
parents:
diff
changeset
|
14 |
|
9317090e9c8c
(svn r11504) -Fix [FS#1467]: removing docks/ship depots could result in non-canal water where canals should have been build.
rubidium
parents:
diff
changeset
|
15 |
#endif /* WATER_H */ |