Files
MonoGame.Extended/source/MonoGame.Extended/IRectangular.cs
T
2024-05-18 19:59:41 -04:00

15 lines
252 B
C#

using Microsoft.Xna.Framework;
namespace MonoGame.Extended
{
public interface IRectangular
{
Rectangle BoundingRectangle { get; }
}
public interface IRectangularF
{
RectangleF BoundingRectangle { get; }
}
}