Re-organize all projects (#4166)
This commit is contained in:
13
Content.Shared/Slippery/NoSlipComponent.cs
Normal file
13
Content.Shared/Slippery/NoSlipComponent.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using Content.Shared.EffectBlocker;
|
||||
using Robust.Shared.GameObjects;
|
||||
|
||||
namespace Content.Shared.Slippery
|
||||
{
|
||||
[RegisterComponent]
|
||||
public class NoSlipComponent : Component, IEffectBlocker
|
||||
{
|
||||
public override string Name => "NoSlip";
|
||||
|
||||
bool IEffectBlocker.CanSlip() => false;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user