public void OnBanchoMatchScoreUpdate(BanchoMatchScoreUpdateArgs args)
 {
     args.pr.JoinedRoom?.Broadcast(
         new MatchScoreUpdate(args.pr.JoinedRoom.GetSlotIdByUserId(args.pr.User.Id), args.Frame)
         );
 }
Exemplo n.º 2
0
 public void OnBanchoMatchScoreUpdate(BanchoMatchScoreUpdateArgs args)
 {
     args.Pr.ActiveMatch?.Push(
         new MatchScoreUpdate(args.Pr.ActiveMatch.GetSlotIdByUserId(args.Pr.User.Id), args.Frame)
         );
 }