2021-07-17 02:37:09 +02:00
|
|
|
|
using Content.Shared.ActionBlocker;
|
2020-12-20 04:31:04 +01:00
|
|
|
|
|
2021-06-09 22:19:39 +02:00
|
|
|
|
namespace Content.Shared.EffectBlocker
|
2020-12-20 04:31:04 +01:00
|
|
|
|
{
|
|
|
|
|
|
/// <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;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|