using UnityEngine; namespace AwesomeTechnologies.Utility.Quadtree { /// /// An interface that defines and object with a rectangle /// public interface IHasRect { Rect Rectangle { get; } } }