Adds gateway support including SingalR

This commit is contained in:
Kamron Batman 2026-03-30 18:52:28 -07:00
parent c207c2c19f
commit fde85a5f7c
No known key found for this signature in database
GPG key ID: 7D81DF26D9A5D94A
13 changed files with 692 additions and 2 deletions

View file

@ -21,6 +21,13 @@ public static partial class GameServer
public bool Accepted { get; set; }
/// <summary>
/// When true, the login will be completed asynchronously (e.g., by a gateway handler).
/// The packet handler skips both the accept and reject paths.
/// The handler that sets this is responsible for calling SendCharacterList or Disconnect.
/// </summary>
public bool Deferred { get; set; }
public CityInfo[] CityInfo { get; set; }
}