Files
tbd-station-14/Content.Shared/Slippery/NoSlipComponent.cs
mirrorcult c0ecdb09af Slipping tweaks + remove EffectBlocker (#4955)
* Slipping tweaks + remove EffectBlocker

* mfw failed merge conflict resolution

Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com>
2021-10-25 17:43:49 +11:00

11 lines
202 B
C#

using Robust.Shared.GameObjects;
namespace Content.Shared.Slippery
{
[RegisterComponent]
public class NoSlipComponent : Component
{
public override string Name => "NoSlip";
}
}