using System; using System.Collections.Generic; using System.Net; using ModernUO.CodeGeneratedEvents; using Server.Accounting; namespace Server.Network; public static partial class GatewayServer { public class ServerListEventArgs { public ServerListEventArgs(NetState state, IAccount account) { State = state; Account = account; Servers = []; } public NetState State { get; } public IAccount Account { get; } public bool Rejected { get; set; } public List Servers { get; } public void AddServer(string name, IPEndPoint address) => AddServer(name, 0, TimeZoneInfo.Local, address); public void AddServer(string name, int fullPercent, TimeZoneInfo tz, IPEndPoint address) => Servers.Add(new ServerInfo(name, fullPercent, tz, address)); } [GeneratedEvent(nameof(ServerListEvent))] public static partial void ServerListEvent(ServerListEventArgs e); }