(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).

This commit is contained in:
Yexo
2009-01-23 00:18:27 +00:00
parent 3852ae1264
commit 08670da54a
19 changed files with 98 additions and 341 deletions

View File

@@ -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 */