using MoonTools.Structs;
namespace MoonTools.Bonk
{
public interface IHasAABB2D
{
AABB2D 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.
AABB2D TransformedAABB(Transform2D transform);
}
}