Delta-v/Content.Shared/EffectBlocker/IEffectBlocker.cs

15 lines
351 B
C#

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