Files
tbd-station-14/Content.Shared/EffectBlocker/EffectBlockerExtensions.cs
2021-07-16 17:37:09 -07:00

18 lines
405 B
C#

using Robust.Shared.GameObjects;
namespace Content.Shared.EffectBlocker
{
public static class EffectBlockerExtensions
{
public static bool CanFall(this IEntity entity)
{
return EffectBlockerSystem.CanFall(entity);
}
public static bool CanSlip(this IEntity entity)
{
return EffectBlockerSystem.CanSlip(entity);
}
}
}