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

17 lines
No EOL
416 B
C#

using WingsEmu.Game._i18n;
using WingsEmu.Game._packetHandling;
namespace WingsEmu.Game.InterChannel;
public class InterChannelSendInfoByNicknameEvent : PlayerEvent
{
public InterChannelSendInfoByNicknameEvent(string nickname, GameDialogKey dialogKey)
{
Nickname = nickname;
DialogKey = dialogKey;
}
public string Nickname { get; }
public GameDialogKey DialogKey { get; }
}