diff options
author | peter1138 <peter1138@openttd.org> | 2007-04-05 09:07:20 +0000 |
---|---|---|
committer | peter1138 <peter1138@openttd.org> | 2007-04-05 09:07:20 +0000 |
commit | 614dd12f21adbd656dfacc12b3fcf94bbabf045e (patch) | |
tree | 93edf7996ac28f25bcf9f7b3e9e0df5ff72b74e2 | |
parent | a2cec54c9d880243617b16972528e305d743014d (diff) | |
download | openttd-614dd12f21adbd656dfacc12b3fcf94bbabf045e.tar.xz |
(svn r9564) -Fix (r9563): When adding files remember to add them...
-rw-r--r-- | projects/openttd.vcproj | 3 | ||||
-rw-r--r-- | projects/openttd_vs80.vcproj | 4 | ||||
-rw-r--r-- | source.list | 1 | ||||
-rw-r--r-- | src/transparency_gui.h | 8 |
4 files changed, 16 insertions, 0 deletions
diff --git a/projects/openttd.vcproj b/projects/openttd.vcproj index 4ee36a3f5..45042187f 100644 --- a/projects/openttd.vcproj +++ b/projects/openttd.vcproj @@ -630,6 +630,9 @@ RelativePath=".\..\src\train.h"> </File> <File + RelativePath=".\..\src\transparency_gui.h"> + </File> + <File RelativePath=".\..\src\variables.h"> </File> <File diff --git a/projects/openttd_vs80.vcproj b/projects/openttd_vs80.vcproj index 4f1536637..57c9cfca4 100644 --- a/projects/openttd_vs80.vcproj +++ b/projects/openttd_vs80.vcproj @@ -1068,6 +1068,10 @@ > </File> <File + RelativePath=".\..\src\transparency_gui.h" + > + </File> + <File RelativePath=".\..\src\variables.h" > </File> diff --git a/source.list b/source.list index b8fb9a0fe..a172190b9 100644 --- a/source.list +++ b/source.list @@ -177,6 +177,7 @@ thread.h tile.h town.h train.h +transparency_gui.h variables.h vehicle.h vehicle_gui.h diff --git a/src/transparency_gui.h b/src/transparency_gui.h new file mode 100644 index 000000000..8ecb03a73 --- /dev/null +++ b/src/transparency_gui.h @@ -0,0 +1,8 @@ +/* $Id$ */ + +#ifndef TRANSPARENCY_GUI_H +#define TRANSPARENCY_GUI_H + +void ShowTransparencyToolbar(); + +#endif /* TRANSPARENCY_GUI_H */ |