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