Files
tbd-station-14/Content.Server/Magic/Events/ISpeakSpell.cs
2023-04-26 14:04:44 +10:00

11 lines
251 B
C#

namespace Content.Server.Magic.Events;
public interface ISpeakSpell // The speak n spell interface
{
/// <summary>
/// Localized string spoken by the caster when casting this spell.
/// </summary>
public string? Speech { get; }
}