using System; namespace AllocsFixes.MapRendering { public class Constants { public static int MAP_BLOCK_SIZE = 128; public static int MAP_CHUNK_SIZE = 16; public static int MAP_REGION_SIZE = 512; public static int MAP_BLOCK_TO_CHUNK_DIV { get { return MAP_BLOCK_SIZE / MAP_CHUNK_SIZE; } } public static int MAP_REGION_TO_CHUNK_DIV { get { return MAP_REGION_SIZE / MAP_CHUNK_SIZE; } } public static int ZOOMLEVELS = 5; public static string MAP_DIRECTORY = string.Empty; } }