inz-00/Assets/Scripts/Cities/CityField.cs
2019-11-21 20:40:35 +01:00

19 lines
372 B
C#

using System.Collections.Generic;
using Assets.Common;
namespace Assets.Cities
{
public enum FieldType
{
MainSquare,
Business,
Living
}
public class CityField
{
public IList<Point> Boundary { get; set; } = new List<Point>();
public FieldType Type { get; set; }
public Point Center { get; set; }
}
}