28 lines
690 B
C#
28 lines
690 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
// EntityModernAirFighter
|
|
|
|
namespace AirFighter
|
|
{
|
|
internal class EntityModernAirFighter : EntityAirFighter
|
|
{
|
|
public Color DopColor { get; private set; }
|
|
public bool DopWings { get; private set; }
|
|
public bool Rockets { get; private set; }
|
|
|
|
|
|
public EntityModernAirFighter(int speed, float weight, Color bodyColor, Color
|
|
dopColor, bool dopWings, bool rockets) :
|
|
base(speed, weight, bodyColor)
|
|
{
|
|
DopColor = dopColor;
|
|
DopWings = dopWings;
|
|
Rockets = rockets;
|
|
}
|
|
}
|
|
}
|