Rev | Line | |
---|
[130] | 1 | using System;
|
---|
| 2 |
|
---|
| 3 | namespace AllocsFixes.MapRendering
|
---|
| 4 | {
|
---|
[144] | 5 | public static class Constants
|
---|
[130] | 6 | {
|
---|
| 7 | public const int MAP_BLOCK_SIZE = 128;
|
---|
| 8 | public const int MAP_CHUNK_SIZE = 16;
|
---|
[143] | 9 | public const int MAP_REGION_SIZE = 512;
|
---|
[130] | 10 | public const int MAP_BLOCK_TO_CHUNK_DIV = MAP_BLOCK_SIZE / MAP_CHUNK_SIZE;
|
---|
[143] | 11 | public const int MAP_REGION_TO_CHUNK_DIV = MAP_REGION_SIZE / MAP_CHUNK_SIZE;
|
---|
[130] | 12 | public const int ZOOMLEVELS = 5;
|
---|
| 13 | public static string MAP_DIRECTORY = string.Empty;
|
---|
| 14 | }
|
---|
| 15 | }
|
---|
| 16 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.