10 lines
200 B
C#
10 lines
200 B
C#
using System.Collections.Generic;
|
|
using Assets.Common;
|
|
|
|
namespace Assets.Cities
|
|
{
|
|
public class CityField
|
|
{
|
|
public ICollection<Point> Boundary { get; set; } = new List<Point>();
|
|
}
|
|
} |