summaryrefslogtreecommitdiff
path: root/src/signs_func.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-03-31 07:25:49 +0000
committerrubidium <rubidium@openttd.org>2008-03-31 07:25:49 +0000
commita0895d57fa4cc30e49bef6a689b1a73cf4c3d02a (patch)
tree15543e5435aa9c7caac61ef628a1dfdc780cddb9 /src/signs_func.h
parentb1e1c134200a18ec8178a933f7bf0442492f60f6 (diff)
downloadopenttd-a0895d57fa4cc30e49bef6a689b1a73cf4c3d02a.tar.xz
(svn r12501) -Codechange: split signs.h.
Diffstat (limited to 'src/signs_func.h')
-rw-r--r--src/signs_func.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/signs_func.h b/src/signs_func.h
new file mode 100644
index 000000000..5a38ba748
--- /dev/null
+++ b/src/signs_func.h
@@ -0,0 +1,21 @@
+/* $Id$ */
+
+/** @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;
+extern bool _sign_sort_dirty;
+
+void UpdateAllSignVirtCoords();
+void PlaceProc_Sign(TileIndex tile);
+
+/* signs_gui.cpp */
+void ShowRenameSignWindow(const Sign *si);
+
+void ShowSignList();
+
+#endif /* SIGNS_FUNC_H */