2023-09-08 18:16:05 -07:00
|
|
|
|
namespace Content.Shared.Magic;
|
2023-04-26 16:04:44 +12:00
|
|
|
|
|
|
|
|
|
|
public interface ISpeakSpell // The speak n spell interface
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Localized string spoken by the caster when casting this spell.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string? Speech { get; }
|
|
|
|
|
|
}
|