mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-16 15:22:27 +02:00
11 lines
208 B
C#
11 lines
208 B
C#
using Robust.Shared.GameObjects;
|
|
|
|
namespace Robust.Shared.Physics
|
|
{
|
|
[RegisterComponent]
|
|
public sealed class BroadphaseComponent : Component
|
|
{
|
|
internal IBroadPhase Tree = default!;
|
|
}
|
|
}
|