Esempio n. 1
0
 public CreateGameHandler(ClientContext clientContext, IBlazeNotificationHandler notificationHandler, IGameManager gameManager, IUserSessionManager userSessionManager)
 {
     _notificationHandler = notificationHandler;
     _clientContext       = clientContext;
     _gameManager         = gameManager;
     _userSessionManager  = userSessionManager;
 }
 public LoginHandler(Skateboard3Context context, ClientContext clientContext, IBlazeNotificationHandler notificationHandler, IPs3TicketDecoder ticketDecoder, IUserSessionManager userSessionManager)
 {
     _context             = context;
     _clientContext       = clientContext;
     _notificationHandler = notificationHandler;
     _ticketDecoder       = ticketDecoder;
     _userSessionManager  = userSessionManager;
 }
 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 RemovePlayerHandler(IBlazeNotificationHandler notificationHandler)
 {
     _notificationHandler = notificationHandler;
 }
Esempio n. 5
0
 public SetGameAttributesHandler(IBlazeNotificationHandler notificationHandler, IGameManager gameManager)
 {
     _notificationHandler = notificationHandler;
     _gameManager         = gameManager;
 }
Esempio n. 6
0
 public UpdatePlayerConnectionHandler(IBlazeNotificationHandler notificationHandler)
 {
     _notificationHandler = notificationHandler;
 }
Esempio n. 7
0
 public SetGameSettingsHandler(IBlazeNotificationHandler notificationHandler, IGameManager gameManager)
 {
     _notificationHandler = notificationHandler;
     _gameManager         = gameManager;
 }
Esempio n. 8
0
 public SkateStatsHandler(ClientContext clientContext, IBlazeNotificationHandler notificationHandler)
 {
     _clientContext       = clientContext;
     _notificationHandler = notificationHandler;
 }