summaryrefslogtreecommitdiff
path: root/src/landscape_type.h
diff options
context:
space:
mode:
authorYexo <yexo@openttd.org>2009-01-23 00:18:27 +0000
committerYexo <yexo@openttd.org>2009-01-23 00:18:27 +0000
commit08670da54a87f188932a6e806461768956806207 (patch)
tree232792793dda47b4f71a5654badb587cde9fbfc5 /src/landscape_type.h
parent3852ae12647f0539eb8f2ad159d0d4165a60e9a3 (diff)
downloadopenttd-08670da54a87f188932a6e806461768956806207.tar.xz
(svn r15212) -Feature [FS#2566]: Change the dropdown box where you can chose which edges will be water to 4 pushbuttons (based on patch by planetmaker).
Diffstat (limited to 'src/landscape_type.h')
-rw-r--r--src/landscape_type.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/landscape_type.h b/src/landscape_type.h
index f1955f4d3..1e558fd07 100644
--- a/src/landscape_type.h
+++ b/src/landscape_type.h
@@ -17,4 +17,15 @@ enum LandscapeType {
NUM_LANDSCAPE = 4,
};
+/**
+ * For storing the water borders which shall be retained.
+ */
+enum Borders {
+ BORDER_NE = 0,
+ BORDER_SE = 1,
+ BORDER_SW = 2,
+ BORDER_NW = 3,
+ BORDERS_RANDOM = 16,
+};
+
#endif /* LANDSCAPE_TYPE_H */