Files
tbd-station-14/Content.Shared/EffectBlocker/IEffectBlocker.cs
2021-06-09 22:19:39 +02:00

16 lines
413 B
C#

#nullable enable
using Content.Shared.ActionBlocker;
namespace Content.Shared.EffectBlocker
{
/// <summary>
/// This interface gives components the ability to block certain effects
/// from affecting the owning entity. For actions see <see cref="IActionBlocker"/>
/// </summary>
public interface IEffectBlocker
{
bool CanFall() => true;
bool CanSlip() => true;
}
}