using System; using System.Collections.Generic; namespace TeslaConsole.RedPlanet; [Serializable] internal class BoostEvent : MissionEvent { public readonly int BoosterOn; public override IEnumerable InvolvedPilots => new RPPlayer[1] { ReportingPilot }; public BoostEvent(RPPlayer reportingPilot, TimeSpan missionTime, int boosterOn) : base(reportingPilot, missionTime) { BoosterOn = boosterOn; } private BoostEvent() { } }