Exemplo n.º 1
0
 public PlayerStatisticsView(int cmid, int splats, int splatted, long shots, long hits, int headshots, int nutshots, int xp, int level, PlayerPersonalRecordStatisticsView personalRecord, PlayerWeaponStatisticsView weaponStatistics)
 {
     Cmid             = cmid;
     Hits             = hits;
     Level            = level;
     Shots            = shots;
     Splats           = splats;
     Splatted         = splatted;
     Headshots        = headshots;
     Nutshots         = nutshots;
     Xp               = xp;
     PersonalRecord   = personalRecord;
     WeaponStatistics = weaponStatistics;
 }
Exemplo n.º 2
0
 public PlayerStatisticsView()
 {
     PersonalRecord   = new PlayerPersonalRecordStatisticsView();
     WeaponStatistics = new PlayerWeaponStatisticsView();
 }