33 lines
826 B
C#
Raw Normal View History

2024-10-03 00:19:45 +03:00
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; }
2024-10-03 00:24:41 +03:00
public bool IsTank { get; private set; }
public bool IsWheel { get; private set; }
2024-10-03 00:19:45 +03:00
public EntityGasolineTanker(int speed, double weight, Color bodyColor, Color additionalColor, bool tank, bool wheel) : base(speed, weight, bodyColor)
{
Add_Color = additionalColor;
2024-10-03 00:24:41 +03:00
IsTank = tank;
IsWheel = wheel;
2024-10-03 00:19:45 +03:00
}
2024-10-03 00:22:51 +03:00
public void ChangeAdditionalColor(Color additionalColor)
{
Add_Color = additionalColor;
}
2024-10-03 00:19:45 +03:00
}
}