26 lines
635 B
C#
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;
|
|
}
|
|
|
|
}
|
|
}
|
|
|