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