Files

11 lines
199 B
C#

using Robust.Shared.Maths;
using Robust.Shared.Physics;
namespace Robust.Shared.GameObjects
{
public interface ILookupWorldBox2Component
{
Box2 GetAABB(Transform transform);
}
}