Ejemplo n.º 1
0
        /// 21.)
        public void GetAggregatedStats(Double summonerId, String gameMode, String season, AggregatedStats.Callback callback)
        {
            AggregatedStats cb = new AggregatedStats(callback);

            InvokeWithCallback("playerStatsService", "getAggregatedStats", new object[] { summonerId, gameMode, season }, cb);
        }
Ejemplo n.º 2
0
 public AggregatedStats(AggregatedStats.Callback callback)
 {
     this.callback = callback;
 }