Files
wwdpublic/Content.Shared/Magic/ISpeakSpell.cs
Spatison 2a10c02eb5 No spead merge (#475)
* Revert "[GoobPort] WIZ REAL (#465)"

This reverts commit 091a8ff433.

* fix local
2025-04-26 10:50:32 +03:00

15 lines
334 B
C#

using Content.Shared.Chat;
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; }
[DataField]
public InGameICChatType ChatType { get; }
}