PIbd-23-Radaev-A.V.-20/Catamaran/EntityCatamaranPro.cs
Аркадий Радаев eda14d9810 res
2023-10-31 12:27:43 +04:00

29 lines
815 B
C#

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