PIbd-22_Bondarenko_M.S._War.../WarmlyShip/WarmlyShip/EntityMotorShip.cs
Макс Бондаренко 48a9ca1a44 Сохранение
2022-09-30 18:55:38 +04:00

26 lines
635 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WarmlyShip
{
internal class EntityMotorShip : EntityWarmlyShip
{
public Color DopColor { get; private set; }
public bool BodyKit { get; private set; }
public bool Wing { get; private set; }
public bool SportLine { get; private set; }
public EntityMotorShip(int speed, float weight, Color bodyColor, Color dopColor, bool bodyKit, bool wing, bool sportLine) : base(speed, weight, bodyColor)
{
DopColor = dopColor;
BodyKit = bodyKit;
Wing = wing;
SportLine = sportLine;
}
}
}