public MatchEndRequest(string matchId, MatchEndPlacement placement, float time, int towersDestroyed)
 {
     MatchId         = matchId;
     Placement       = placement;
     Time            = time;
     TowersDestroyed = towersDestroyed;
 }
Beispiel #2
0
 public void Init(int gems, MatchEndPlacement placement, int score)
 {
     _gems      = gems;
     _placement = placement;
     _score     = score;
 }