ace/Source/ACE.Server/Network/GameEvent/Events/GameEventPopupString.cs
Galli ecd6ce2b43
Remove UTF-8 BOMs across repository (#4324)
* remove bom from source files

* Remove stray BOM cleanup comments
2025-06-22 15:33:36 -04:00

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);
}
}
}