2021-02-11 01:13:03 -08:00
|
|
|
|
using Robust.Shared.GameObjects;
|
2020-12-20 04:31:04 +01:00
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.GameObjects.EntitySystems.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);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|