23 lines
677 B
C#
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;
|
|
}
|
|
}
|
|
}
|