Firstborn/Assets/AwesomeTechnologies/VegetationStudioPro/Runtime/Utility/QuadTree/IHasRect.cs

13 lines
247 B
C#
Raw Normal View History

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