25 lines
644 B
C#
25 lines
644 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Airbus
|
|
{
|
|
internal class EntityAirbus : EntityAirplane
|
|
{
|
|
public Color DopColor { get; private set; }
|
|
public bool Compartment { get; private set; }
|
|
public bool Engine { get; private set; }
|
|
public EntityAirbus(int speed, float weight, Color bodyColor, Color
|
|
dopColor, bool compartment, bool engine) :
|
|
base(speed, weight, bodyColor)
|
|
{
|
|
DopColor = dopColor;
|
|
Compartment = compartment;
|
|
Engine = engine;
|
|
}
|
|
|
|
}
|
|
}
|