2023-10-03 11:53:51 +04:00
|
|
|
|
namespace ElectricLocomotive;
|
|
|
|
|
|
|
|
|
|
public class EntityElectricLocomotiv : EntityLocomotiv
|
|
|
|
|
{
|
2023-11-14 12:17:37 +04:00
|
|
|
|
public Color BatteryColor { get; set; }
|
|
|
|
|
public Color RogaColor { get; set; }
|
2023-11-28 12:26:51 +04:00
|
|
|
|
public bool isRoga;
|
|
|
|
|
public bool isBattery;
|
|
|
|
|
public EntityElectricLocomotiv(int speed,double weight, Color batteryColor, Color rogaColor, Color mainColor, Color dopColor, bool isRoga, bool isBattery) : base(speed, weight, mainColor, dopColor)
|
2023-10-03 11:53:51 +04:00
|
|
|
|
{
|
|
|
|
|
BatteryColor = batteryColor;
|
|
|
|
|
RogaColor = rogaColor;
|
2023-11-28 12:26:51 +04:00
|
|
|
|
this.isRoga = isRoga;
|
|
|
|
|
this.isBattery = isBattery;
|
2023-10-03 11:53:51 +04:00
|
|
|
|
}
|
|
|
|
|
}
|