source: binary-improvements/7dtd-server-fixes/src/MapRendering/Constants.cs@ 196

Last change on this file since 196 was 187, checked in by alloc, 10 years ago

fixes

File size: 492 bytes
RevLine 
[130]1using System;
2
3namespace AllocsFixes.MapRendering
4{
[187]5 public class Constants
[130]6 {
[187]7 public static int MAP_BLOCK_SIZE = 128;
8 public static int MAP_CHUNK_SIZE = 16;
9 public static int MAP_REGION_SIZE = 512;
10 public static int MAP_BLOCK_TO_CHUNK_DIV { get { return MAP_BLOCK_SIZE / MAP_CHUNK_SIZE; } }
11 public static int MAP_REGION_TO_CHUNK_DIV { get { return MAP_REGION_SIZE / MAP_CHUNK_SIZE; } }
12 public static int ZOOMLEVELS = 5;
[130]13 public static string MAP_DIRECTORY = string.Empty;
14 }
15}
16
Note: See TracBrowser for help on using the repository browser.