using System.Collections.Generic; using MoonWorks.Math; namespace MoonWorks.Collision { public interface ICollidable { IEnumerable Shapes { get; } AABB2D AABB { get; } AABB2D TransformedAABB(Transform2D transform); } }