17 lines
278 B
C#
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;
|
|
}
|
|
}
|
|
} |