aboutsummaryrefslogtreecommitdiff
path: root/V3/Map/Constants.cs
blob: 2de2e2541c690eb90be83b3b8a0927b6f67287ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
namespace V3.Map
{
    /// <summary>
    /// Constants for describing the size of the cells of the collision grid.
    /// Important for pathfinding.
    /// </summary>
    public static class Constants
    {
        public const int CellHeight = 16;
        public const int CellWidth = 16;
    }
}