10 lines
243 B
C#
10 lines
243 B
C#
namespace Content.Shared.Magic;
|
|
|
|
public interface ISpeakSpell // The speak n spell interface
|
|
{
|
|
/// <summary>
|
|
/// Localized string spoken by the caster when casting this spell.
|
|
/// </summary>
|
|
public string? Speech { get; }
|
|
}
|