using UnityEngine; using System.Collections.Generic; public interface ISpotArea { float Radius { get; } public List<Vector2> Pixels0 { get; } public List<Vector2> Pixels1 { get; } Vector2 Centroid { get; } float CalculateRadius(); }