using Microsoft.Xna.Framework; namespace BouncyCatIsBouncy { interface ICollidable { CollisionInfo Collides(RadialBB other); Vector2 Center { get; set; } } }