mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-18 14:07:53 +03:00
* Fix namespaces and optimize imports * Cleanup fixes * Merge conflict fixes * Merge conflict fixes * Merge conflict fixes
14 lines
338 B
C#
14 lines
338 B
C#
using Content.Shared.GameObjects.EntitySystems;
|
|
using Robust.Shared.GameObjects;
|
|
|
|
namespace Content.Server.GameObjects.Components.Movement
|
|
{
|
|
[RegisterComponent]
|
|
public class NoSlipComponent : Component, IEffectBlocker
|
|
{
|
|
public override string Name => "NoSlip";
|
|
|
|
bool IEffectBlocker.CanSlip() => false;
|
|
}
|
|
}
|