using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Catamaran { public class EntityCatamaranPro : EntityCatamaran { public Color AdditionalColor { get; set; } public bool Motor { get; private set; } public bool BodyKit { get; private set; } public bool Sail { get; private set; } public EntityCatamaranPro(int speed, double weight, Color bodyColor,Color additionalColor, bool bodykit, bool motor, bool sail) : base(speed, weight, bodyColor) { AdditionalColor = additionalColor; Motor = motor; Sail = sail; BodyKit = bodykit; } } }