mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
16 lines
363 B
C#
16 lines
363 B
C#
using Robust.Server.GameObjects;
|
|
using Robust.Shared.Physics;
|
|
using Robust.Shared.Physics.Systems;
|
|
|
|
namespace Robust.Server.Physics
|
|
{
|
|
internal sealed class BroadPhaseSystem : SharedBroadphaseSystem
|
|
{
|
|
public override void Initialize()
|
|
{
|
|
base.Initialize();
|
|
UpdatesBefore.Add(typeof(PhysicsSystem));
|
|
}
|
|
}
|
|
}
|