author | rubidium |
Thu, 27 Dec 2007 13:35:39 +0000 | |
changeset 8640 | 1e93b81e96d2 |
parent 8604 | 8afdd9877afd |
child 8828 | 3caed7db62de |
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); |
8604
8afdd9877afd
(svn r11669) -Codechange: refactor tile.h -> tile_type.h and tile_map.h
rubidium
parents:
8601
diff
changeset
|
13 |
void 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 */ |