1 2 3 4 5 6 7 8 9 10
namespace Mundus.Models { public static class MapSizes { //These are the map sizes that are generated public const int SMALL = 5; public const int MEDIUM = 500; public const int LARGE = 25; public static int CurrSize { get; set; } } }