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

21 lines
No EOL
616 B
C#

using WingsEmu.Game._i18n;
using WingsEmu.Game._packetHandling;
using WingsEmu.Packets.Enums.Chat;
namespace WingsEmu.Game.InterChannel;
public class InterChannelSendChatMsgByNicknameEvent : PlayerEvent
{
public InterChannelSendChatMsgByNicknameEvent(string nickname, GameDialogKey dialogKey, ChatMessageColorType chatMessageColorType)
{
DialogKey = dialogKey;
ChatMessageColorType = chatMessageColorType;
Nickname = nickname;
}
public string Nickname { get; }
public GameDialogKey DialogKey { get; }
public ChatMessageColorType ChatMessageColorType { get; }
}