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