From abb601f682775de2f0670482f0b4b773300c9949 Mon Sep 17 00:00:00 2001 From: rubidium Date: Mon, 21 Dec 2009 16:13:30 +0000 Subject: (svn r18585) -Codechange: replace some magic numbers by constants --- src/tile_type.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/tile_type.h') diff --git a/src/tile_type.h b/src/tile_type.h index 4083dfd67..bd1d62dab 100644 --- a/src/tile_type.h +++ b/src/tile_type.h @@ -21,6 +21,8 @@ enum { TILE_HEIGHT = 8, ///< The standard height-difference between tiles on two levels is 8 (z-diff 8) MAX_TILE_HEIGHT = 15, ///< Maximum allowed tile height + MIN_SNOWLINE_HEIGHT = 2, ///< Minimum snowline height + DEF_SNOWLINE_HEIGHT = 7, ///< Default snowline height MAX_SNOWLINE_HEIGHT = (MAX_TILE_HEIGHT - 2), ///< Maximum allowed snowline height }; -- cgit v1.2.3-54-g00ecf