10 lines
212 B
C#
10 lines
212 B
C#
using System.Collections.Generic;
|
|
using Assets.Common;
|
|
|
|
namespace Assets.PointDistribution
|
|
{
|
|
public interface IPointDistribution
|
|
{
|
|
IEnumerable<Point> Generate(double width, double height);
|
|
}
|
|
} |