22 lines
584 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AirPlaneWithRadar
{
internal class RadioPlane : EntetyPlain
{
public Color DopColor { get; set; }
public bool Radar { get; set; }
public bool OilBox { get; set; }
public RadioPlane(int speed, float weight, Color bodyColor, Color dopColor, bool radar, bool oilBox) : base(speed, weight, bodyColor)
{
DopColor = dopColor;
Radar = radar;
OilBox = oilBox;
}
}
}