34 lines
819 B
C#
34 lines
819 B
C#
using ProjectGasolineTanker.Entities;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ProjectGasolineTanker.Entities
|
|
{
|
|
|
|
public class EntityGasolineTanker : EntityTruck
|
|
{
|
|
|
|
public Color Add_Color { get; private set; }
|
|
|
|
public bool Tank { get; private set; }
|
|
|
|
public bool Wheel { get; private set; }
|
|
|
|
public EntityGasolineTanker(int speed, double weight, Color bodyColor, Color additionalColor, bool tank, bool wheel) : base(speed, weight, bodyColor)
|
|
{
|
|
Add_Color = additionalColor;
|
|
Tank = tank;
|
|
Wheel = wheel;
|
|
}
|
|
|
|
public void ChangeAdditionalColor(Color additionalColor)
|
|
{
|
|
Add_Color = additionalColor;
|
|
}
|
|
}
|
|
}
|
|
|