PIbd-23_Lisov_N.A._AirFight.../AirFighter/EntityMilitaryAircraft.cs
2022-10-03 16:29:09 +04:00

25 lines
663 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AirFighter
{
internal class EntityMilitaryAircraft : EntityAircraft
{
public Color ExtraColor { get; private set; }
public bool Rockets { get; private set; }
public bool ExtraWings { get; private set; }
public EntityMilitaryAircraft(int speed, float weight, Color bodyColor, Color extraColor, bool rockets, bool extraWings) : base(speed, weight, bodyColor)
{
ExtraColor = extraColor;
Rockets = rockets;
ExtraWings = extraWings;
}
}
}