using MoonTools.Structs; namespace MoonTools.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); } }