2024-08-01 11:52:27 +03:00
|
|
|
namespace Content.Shared._CP14.MagicSpell.Events;
|
2024-07-28 17:26:47 +03:00
|
|
|
|
2024-11-07 16:04:49 +03:00
|
|
|
public interface ICP14DelayedMagicEffect
|
2024-07-28 17:26:47 +03:00
|
|
|
{
|
2024-11-07 16:04:49 +03:00
|
|
|
public float Cooldown { get; }
|
|
|
|
|
|
|
|
|
|
public float CastDelay { get; }
|
2024-07-28 17:26:47 +03:00
|
|
|
|
|
|
|
|
public bool BreakOnMove { get; }
|
|
|
|
|
|
|
|
|
|
public bool BreakOnDamage { get; }
|
2024-08-05 15:22:14 +03:00
|
|
|
|
|
|
|
|
public bool Hidden{ get; }
|
2024-09-29 16:44:17 +03:00
|
|
|
|
|
|
|
|
public float EntityDistance { get; }
|
2024-07-28 17:26:47 +03:00
|
|
|
}
|