Files
wwdpublic/Content.Shared/Magic/Events/ProjectileSpellEvent.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

20 lines
503 B
C#

using Content.Shared.Actions;
using Content.Shared.Chat;
using Robust.Shared.Prototypes;
namespace Content.Shared.Magic.Events;
public sealed partial class ProjectileSpellEvent : WorldTargetActionEvent, ISpeakSpell
{
/// <summary>
/// What entity should be spawned.
/// </summary>
[DataField(required: true)]
public EntProtoId Prototype;
[DataField]
public string? Speech { get; private set; }
public InGameICChatType ChatType { get; } = InGameICChatType.Speak;
}