2008-03-31 07:25:49 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2009-08-21 20:21:05 +00:00
|
|
|
/*
|
|
|
|
* This file is part of OpenTTD.
|
|
|
|
* OpenTTD 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, version 2.
|
|
|
|
* OpenTTD 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. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2008-03-31 07:25:49 +00:00
|
|
|
/** @file signs_func.h Functions related to signs. */
|
|
|
|
|
|
|
|
#ifndef SIGNS_FUNC_H
|
|
|
|
#define SIGNS_FUNC_H
|
|
|
|
|
|
|
|
#include "signs_type.h"
|
|
|
|
|
|
|
|
extern SignID _new_sign_id;
|
|
|
|
|
|
|
|
void UpdateAllSignVirtCoords();
|
|
|
|
void PlaceProc_Sign(TileIndex tile);
|
|
|
|
|
|
|
|
/* signs_gui.cpp */
|
|
|
|
void ShowRenameSignWindow(const Sign *si);
|
2008-06-12 22:29:42 +00:00
|
|
|
void HandleClickOnSign(const Sign *si);
|
2008-09-16 19:05:38 +00:00
|
|
|
void DeleteRenameSignWindow(SignID sign);
|
2008-03-31 07:25:49 +00:00
|
|
|
|
|
|
|
void ShowSignList();
|
|
|
|
|
|
|
|
#endif /* SIGNS_FUNC_H */
|