public StartMatchmakingHandler(ClientContext clientContext, Skateboard3Context context, IOptions <BlazeConfig> blazeConfig, IBlazeNotificationHandler notificationHandler, IGameManager gameManager, IUserSessionManager userSessionManager)
 {
     _notificationHandler = notificationHandler;
     _context             = context;
     _blazeConfig         = blazeConfig.Value;
     _gameManager         = gameManager;
     _userSessionManager  = userSessionManager;
     _clientContext       = clientContext;
 }
 public ServerInfoHandler(IOptions <BlazeConfig> blazeConfig)
 {
     _blazeConfig = blazeConfig.Value;
 }
Esempio n. 3
0
 public PreAuthHandler(IOptions <BlazeConfig> blazeConfig)
 {
     _blazeConfig = blazeConfig.Value;
 }