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

21 lines
No EOL
620 B
C#

using WingsEmu.Game._i18n;
using WingsEmu.Game._packetHandling;
using WingsEmu.Packets.Enums.Chat;
namespace WingsEmu.Game.InterChannel;
public class InterChannelSendChatMsgByCharIdEvent : PlayerEvent
{
public InterChannelSendChatMsgByCharIdEvent(long characterId, GameDialogKey dialogKey, ChatMessageColorType chatMessageColorType)
{
DialogKey = dialogKey;
ChatMessageColorType = chatMessageColorType;
CharacterId = characterId;
}
public long CharacterId { get; }
public GameDialogKey DialogKey { get; }
public ChatMessageColorType ChatMessageColorType { get; }
}