mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-20 15:08:46 +03:00
18 lines
442 B
C#
18 lines
442 B
C#
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);
|
|
}
|
|
}
|
|
}
|