ISEbd-22.Semelenova_Y_G_Air.../AirFighter/AirFighter/EntityAirFighterMilitary.cs
2023-12-13 03:10:36 +04:00

23 lines
677 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AirFighter.Entities
{
public class EntityAirFighterMilitary : EntityAirFighter
{
public Color AdditionalColor { get; set; }
public bool Rocket { get; private set; }
public bool Wing { get; private set; }
public EntityAirFighterMilitary(int speed, double weight, Color bodyColor, Color additionalColor, bool rocket, bool wing)
: base(speed, weight, bodyColor)
{
AdditionalColor = additionalColor;
Rocket = rocket;
Wing = wing;
}
}
}