source:
binary-improvements/7dtd-server-fixes/src/MapRendering/Constants.cs@
137
Last change on this file since 137 was 130, checked in by , 10 years ago | |
---|---|
File size: 331 bytes |
Line | |
---|---|
1 | using System; |
2 | |
3 | namespace AllocsFixes.MapRendering |
4 | { |
5 | public class Constants |
6 | { |
7 | public const int MAP_BLOCK_SIZE = 128; |
8 | public const int MAP_CHUNK_SIZE = 16; |
9 | public const int MAP_BLOCK_TO_CHUNK_DIV = MAP_BLOCK_SIZE / MAP_CHUNK_SIZE; |
10 | public const int ZOOMLEVELS = 5; |
11 | public static string MAP_DIRECTORY = string.Empty; |
12 | } |
13 | } |
14 |
Note:
See TracBrowser
for help on using the repository browser.