23 lines
695 B
C#
23 lines
695 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ProjectBulldozer.Entities
|
|
{
|
|
public class EntityBulldozer : EntityTractor
|
|
{
|
|
public Color AdditionalColor { get; private set; }
|
|
public bool Otval { get; private set; }
|
|
public bool SeifBatteries { get; private set; }
|
|
public EntityBulldozer(int speed, double weight, Color bodyColor, Color additionalColor, bool otval,
|
|
bool seifBatteries) : base(speed, weight, bodyColor)
|
|
{
|
|
AdditionalColor = additionalColor;
|
|
Otval = otval;
|
|
SeifBatteries = seifBatteries;
|
|
}
|
|
}
|
|
}
|