Firstborn/Assets/AwesomeTechnologies/VegetationStudioPro/Runtime/Utility/QuadTree/IHasRect.cs
Schaken-Mods 959e80cf72 assets upload
assets upload description.
2023-03-28 12:16:30 -05:00

13 lines
247 B
C#

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