Files
RobustToolbox/SS14.Client.Interfaces/Collision/ICollider.cs
2015-01-23 01:15:33 -05:00

9 lines
148 B
C#

using System.Drawing;
namespace SS14.Client.Interfaces.Collision
{
public interface ICollider
{
RectangleF AABB { get; }
}
}