aboutsummaryrefslogtreecommitdiff
path: root/Mundus/Models/MapSizes.cs
blob: b9fd5e528e797f9b5673cea00d2e69719b45a2c2 (plain) (blame)
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; }
    }
}