Files
@ r13191:af1540e675da
Branch filter:
Location: cpp/openttd-patchpack/source/src/signs_func.h - annotation
r13191:af1540e675da
1010 B
text/x-c
(svn r17708) -Feature [FS#2053]: [OSX] Implement clipboard support for OS X.
r8790:550c9960067a r8790:550c9960067a r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r8790:550c9960067a r8790:550c9960067a r8790:550c9960067a r8790:550c9960067a r8790:550c9960067a r8790:550c9960067a r8790:550c9960067a r8790:550c9960067a r8790:550c9960067a r8790:550c9960067a r8790:550c9960067a r8790:550c9960067a r8790:550c9960067a r8790:550c9960067a r9510:6d2f1c62ff65 r10156:5d97c842d2d7 r8790:550c9960067a r8790:550c9960067a r8790:550c9960067a r8790:550c9960067a | /* $Id$ */
/*
* 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/>.
*/
/** @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);
void HandleClickOnSign(const Sign *si);
void DeleteRenameSignWindow(SignID sign);
void ShowSignList();
#endif /* SIGNS_FUNC_H */
|