19 lines
372 B
C#
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; }
|
|
}
|
|
} |