equal
deleted
inserted
replaced
36 /** |
36 /** |
37 * Gets the town associated with the house or road tile |
37 * Gets the town associated with the house or road tile |
38 * @param t the tile to get the town of |
38 * @param t the tile to get the town of |
39 * @return the town |
39 * @return the town |
40 */ |
40 */ |
41 static inline Town* GetTownByTile(TileIndex t) |
41 static inline Town *GetTownByTile(TileIndex t) |
42 { |
42 { |
43 return GetTown(GetTownIndex(t)); |
43 return GetTown(GetTownIndex(t)); |
44 } |
44 } |
45 |
45 |
46 /** |
46 /** |