Files
MonoGame.Extended/Source/MonoGame.Extended/IRectangular.cs
T
Lucas Girouard-Stranks a1f8566a46 Geometric Primitives Cleanup (#346)
* CircleF and RectangleF

* Fix build errors
2017-03-12 20:32:07 +10:00

8 lines
127 B
C#

namespace MonoGame.Extended
{
public interface IRectangular
{
RectangleF BoundingRectangle { get; }
}
}