namespace Ragon.Server; public class RagonContextObserver { private Dictionary _contexts; public RagonContextObserver(Dictionary contexts) { _contexts = contexts; } public void OnAuthorized(RagonContext context) { _contexts.Add(context.LobbyPlayer.Id, context); } }