1 | ClearedObjectArea *IHaveNoIdeaFunction(TileIndex findclearedobject_tile, TileIndex coa_first_tile, TileIndex coa_area_tile, uint coa_area_w, uint coa_area_h)
| 1 | /**
|
---|
| | 2 | * Append an orthogonal area of cleared tiles in _cleared_object_areas, then return the pointer.
|
---|
| | 3 | * @param cleared_tile The tile being cleared, which then causes the whole area to be cleared.
|
---|
| | 4 | * @param ta_tile The top most tile of the area to be appended as cleared.
|
---|
| | 5 | * @param w The width (x) of the area to be appended as cleared.
|
---|
| | 6 | * @param h The height (y) of the area to be appended as cleared.
|
---|
| | 7 | * @return The pointer to _cleared_object_areas with the appended cleared area.
|
---|
| | 8 | */
|
---|
| | 9 | ClearedObjectArea *MakeClearedObjectArea(TileIndex cleared_tile, TileIndex ta_tile, uint w, uint h)
|
---|