mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-18 05:59:03 +03:00
11 lines
251 B
C#
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; }
|
|
}
|
|
|