server-master/srcs/WingsAPI.Game/InterChannel/InterChannelChatMessageBroadcastEvent.cs
2026-02-10 18:21:30 +01:00

21 lines
No EOL
598 B
C#

using PhoenixLib.Events;
using WingsEmu.Game._i18n;
using WingsEmu.Packets.Enums.Chat;
namespace WingsEmu.Game.InterChannel;
public class InterChannelChatMessageBroadcastEvent : IAsyncEvent
{
public InterChannelChatMessageBroadcastEvent(GameDialogKey dialogKey, ChatMessageColorType chatMessageColorType, params string[] args)
{
DialogKey = dialogKey;
ChatMessageColorType = chatMessageColorType;
Args = args;
}
public GameDialogKey DialogKey { get; }
public ChatMessageColorType ChatMessageColorType { get; }
public object?[] Args { get; }
}