mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-01 09:37:03 +02:00
14 lines
309 B
C#
14 lines
309 B
C#
using Robust.Shared.Physics.Systems;
|
|
|
|
namespace Robust.Client.Physics
|
|
{
|
|
internal sealed partial class BroadPhaseSystem : SharedBroadphaseSystem
|
|
{
|
|
public override void Initialize()
|
|
{
|
|
base.Initialize();
|
|
UpdatesBefore.Add(typeof(PhysicsSystem));
|
|
}
|
|
}
|
|
}
|