IRectangular.cs 252 B

1234567891011121314
  1. using Microsoft.Xna.Framework;
  2. namespace MonoGame.Extended
  3. {
  4. public interface IRectangular
  5. {
  6. Rectangle BoundingRectangle { get; }
  7. }
  8. public interface IRectangularF
  9. {
  10. RectangleF BoundingRectangle { get; }
  11. }
  12. }