2022-10-24 23:59:41 +04:00

31 lines
1.0 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Airbus
{
//класс-сущность супер аэробус
internal class EntitySuperAirbus: EntityAirbus
{
//Дополнительный цвет
public Color AddColor { get; private set; }
//Признак наличия дополнительно пассажирского отсека
public bool AddСompartment { get; private set; }
//Признак наличия доплнительных двигателей
public bool AddEngine { get; private set; }
//Инициализация свойств
public EntitySuperAirbus(int speed, float weight, Color corpusColor, Color addColor, bool addCompartment, bool addEngine) :
base(speed, weight, corpusColor)
{
AddColor = addColor;
AddСompartment = addCompartment;
AddEngine = addEngine;
}
}
}