16 lines
No EOL
353 B
C#
16 lines
No EOL
353 B
C#
using WingsEmu.Game._packetHandling;
|
|
|
|
namespace WingsEmu.Game.InterChannel;
|
|
|
|
public class InterChannelSendWhisperEvent : PlayerEvent
|
|
{
|
|
public InterChannelSendWhisperEvent(string nickname, string message)
|
|
{
|
|
Nickname = nickname;
|
|
Message = message;
|
|
}
|
|
|
|
public string Nickname { get; }
|
|
|
|
public string Message { get; }
|
|
} |