1
0

ISpeakSpell.cs 243 B

123456789
  1. namespace Content.Shared.Magic;
  2. public interface ISpeakSpell // The speak n spell interface
  3. {
  4. /// <summary>
  5. /// Localized string spoken by the caster when casting this spell.
  6. /// </summary>
  7. public string? Speech { get; }
  8. }