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; } } }