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; }
public PlayerStatisticsView() { PersonalRecord = new PlayerPersonalRecordStatisticsView(); WeaponStatistics = new PlayerWeaponStatisticsView(); }