Files
@ r21037:25a2ae9a83c2
Branch filter:
Location: cpp/openttd-patchpack/source/src/signs_func.h - annotation
r21037:25a2ae9a83c2
1.0 KiB
text/x-c
(svn r26117) -Cleanup: unneeded NULL check
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 r14248:a9050881acd7 r8790:550c9960067a r15827:4bfb4849cb26 r8790:550c9960067a r8790:550c9960067a r8790:550c9960067a r8790:550c9960067a r8790:550c9960067a r8790:550c9960067a r8790:550c9960067a r9510:6d2f1c62ff65 r10156:5d97c842d2d7 r8790:550c9960067a r15827:4bfb4849cb26 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"
#include "tile_type.h"
struct Window;
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);
Window *ShowSignList();
#endif /* SIGNS_FUNC_H */
|