using System; using MoonTools.Core.Structs; namespace MoonTools.Core.Bonk { public interface IHasAABB2D { AABB AABB { get; } /// /// Returns a bounding box based on the shape. /// /// A Transform for transforming the shape vertices. /// Returns a bounding box based on the shape. AABB TransformedAABB(Transform2D transform); } }