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