mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-18 14:07:53 +03:00
19 lines
422 B
C#
19 lines
422 B
C#
#nullable enable
|
|
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);
|
|
}
|
|
}
|
|
}
|