diff -r 443f6f7abcfb -r e6cfc44266af src/Config.hh --- a/src/Config.hh Tue Jan 20 23:24:04 2009 +0200 +++ b/src/Config.hh Tue Jan 20 23:30:18 2009 +0200 @@ -16,11 +16,16 @@ */ const float KG_PI = 3.14159265; -// Physics simulation -// Physics resolution -const uint16_t MAP_WIDTH = 1000; -const uint16_t MAP_HEIGHT = 800; -const float MAP_SCALE = 1; // One "pixel" in "real" units +/** + * Random generator seed to use for terrain generator + */ +const int TERRAIN_RANDOM_SEED = 1337; + +/** + * Terrain size, equal to physics simulation size + */ +const PixelDimension TERRAIN_WIDTH = 1000; +const PixelDimension TERRAIN_HEIGHT = 800; /** Engine timeout, this determines our minimum tick rate */ const TimeMS ENGINE_TIMEOUT_MS = 10;