29 lines
815 B
C#
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;
|
|
}
|
|
|
|
}
|
|
}
|