25 lines
663 B
C#
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;
|
|
}
|
|
}
|
|
}
|