mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-01 17:47:24 +02:00
11 lines
199 B
C#
11 lines
199 B
C#
using Robust.Shared.Maths;
|
|
using Robust.Shared.Physics;
|
|
|
|
namespace Robust.Shared.GameObjects
|
|
{
|
|
public interface ILookupWorldBox2Component
|
|
{
|
|
Box2 GetAABB(Transform transform);
|
|
}
|
|
}
|