/********************************************************************** Freeciv - Copyright (C) 2003 - Per I. Mathisen This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. ***********************************************************************/ #ifndef FC__CITYMAP_H #define FC__CITYMAP_H void citymap_turn_init(struct player *pplayer); int citymap_read(int x, int y); bool citymap_is_reserved(int x, int y); void citymap_reserve_city_spot(int x, int y, int id); void citymap_free_city_spot(int x, int y, int id); #endif