mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 21:48:58 +03:00
15 lines
334 B
C#
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; }
|
|
}
|