Mercurial > hg > openttd
view src/landscape_type.h @ 10877:e9c95718d466 draft
(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).
author | Yexo <Yexo@openttd.org> |
---|---|
date | Fri, 23 Jan 2009 00:18:27 +0000 |
parents | 63a58f4b2607 |
children | bc7926153e19 |
line wrap: on
line source
/* $Id$ */ /** @file landscape_type.h Types related to the landscape. */ #ifndef LANDSCAPE_TYPE_H #define LANDSCAPE_TYPE_H typedef byte LandscapeID; ///< Landscape type. @see LandscapeType /** Landscape types */ enum LandscapeType { LT_TEMPERATE = 0, LT_ARCTIC = 1, LT_TROPIC = 2, LT_TOYLAND = 3, 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 */