mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
11 lines
333 B
C#
11 lines
333 B
C#
namespace ACE.Server.Network.GameEvent.Events
|
|
{
|
|
public class GameEventPopupString : GameEventMessage
|
|
{
|
|
public GameEventPopupString(Session session, string message)
|
|
: base(GameEventType.PopupString, GameMessageGroup.UIQueue, session)
|
|
{
|
|
Writer.WriteString16L(message);
|
|
}
|
|
}
|
|
}
|