inz-00/Assets/Map/Location.cs
2019-08-15 20:22:18 +02:00

17 lines
278 B
C#

using Assets.Common;
using Assets.Voronoi;
using UnityEngine;
namespace Assets.Map
{
public class Location
{
public readonly Point Center;
public Color Type;
public Location(Point center)
{
Center = center;
}
}
}