Exemple #1
0
        public MatchmakerNotifier()
        {
            HttpWrapper httpWrapper = new HttpWrapper();

            playerDeathMessageValidator          = new PlayerDeathMessageValidator();
            httpMatchFinishNotifierService       = new HttpMatchFinishNotifierService(httpWrapper);
            matchmakerPlayerDeathNotifierService = new MatchmakerPlayerDeathNotifierService(httpWrapper);
        }
 public MatchmakerPlayerDeathNotifierService(HttpWrapper httpWrapper)
 {
     this.httpWrapper = httpWrapper;
 }
 public HttpMatchFinishNotifierService(HttpWrapper httpWrapper)
 {
     this.httpWrapper = httpWrapper;
 }