public Competition()
 {
     Participants             = new List <IParticipant>();
     Tracks                   = new Queue <Track>();
     ParticipantPoints        = new RaceData <ParticipantPoints>();
     ParticipantsTimes        = new RaceData <ParticipantSectionTimes>();
     ParticipantTimesBroken   = new RaceData <ParticipantTimesBroken>();
     ParticipantSpeedPerTrack = new RaceData <ParticipantSpeedPerTrack>();
 }
Exemple #2
0
        public Competition()
        {
            Participants = new List <IParticipant>();
            Tracks       = new Queue <Track>();

            DriverPoints         = new RaceData <DriverPoints>();
            DriverLapTime        = new RaceData <DriverLapTime>();
            DriverTimeDifference = new RaceData <DriverTimeDifference>();
            DriverAverageSpeed   = new RaceData <DriverAverageSpeed>();
        }