11 lines
432 B
C#
11 lines
432 B
C#
using Content.Server.Chat.Systems;
|
|
|
|
namespace Content.Server._Sunrise.Chat.Sanitization;
|
|
|
|
public sealed class TrySendChatMessageEvent(string message, InGameICChatType? icChatType = null, InGameOOCChatType? oocChatType = null)
|
|
: CancellableEntityEventArgs
|
|
{
|
|
public string Message = message;
|
|
public readonly InGameICChatType? IcChatType = icChatType;
|
|
public readonly InGameOOCChatType? OocChatType = oocChatType;
|
|
}
|