Files
tbd-station-14/Content.Server/GameObjects/Components/Movement/NoSlipComponent.cs
2020-12-20 04:31:04 +01:00

15 lines
400 B
C#

using Content.Shared.GameObjects.EntitySystems;
using Content.Shared.GameObjects.EntitySystems.EffectBlocker;
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;
}
}