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

12 lines
342 B
C#

using Content.Shared.Chat;
namespace Content.Shared.Magic.Events;
[ByRefEvent]
public readonly struct SpeakSpellEvent(EntityUid performer, string speech, InGameICChatType chatType)
{
public readonly EntityUid Performer = performer;
public readonly string Speech = speech;
public readonly InGameICChatType ChatType = chatType;
}