diff options
author | rubidium <rubidium@openttd.org> | 2007-12-21 07:38:36 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2007-12-21 07:38:36 +0000 |
commit | c201bc35f0f782ccb6acd51437d232b1c1195d95 (patch) | |
tree | fff45a0d36f14044846f8b90ef3a59e442c80c6d /src/rail_gui.h | |
parent | 33c86f83e28012e5424303f1b9660ad7b235d011 (diff) | |
download | openttd-c201bc35f0f782ccb6acd51437d232b1c1195d95.tar.xz |
(svn r11672) -Codechange: refactor some stuff out of gui.h.
Diffstat (limited to 'src/rail_gui.h')
-rw-r--r-- | src/rail_gui.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/rail_gui.h b/src/rail_gui.h new file mode 100644 index 000000000..67d590211 --- /dev/null +++ b/src/rail_gui.h @@ -0,0 +1,13 @@ +/* $Id$ */ + +/** @file rail_gui.h Functions/types etc. related to the rail GUI. */ + +#ifndef RAIL_GUI_H +#define RAIL_GUI_H + +#include "rail_type.h" + +void ShowBuildRailToolbar(RailType railtype, int button); +void ReinitGuiAfterToggleElrail(bool disable); + +#endif /* RAIL_GUI_H */ |