Add EffectBlockerExtensions

This commit is contained in:
DrSmugleaf
2020-12-20 04:31:04 +01:00
parent fcd52fa90c
commit a3fdcd3a68
11 changed files with 72 additions and 38 deletions

View File

@@ -0,0 +1,17 @@
using Robust.Shared.Interfaces.GameObjects;
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);
}
}
}