PIbd-23-Kondratev-N.D.-Gaso.../GasolineTanker/ProjectGasolineTanker/EntityGasolineTanker.cs

22 lines
671 B
C#
Raw Normal View History

2024-10-03 01:16:11 +04: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 Body { 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)
{
Body = additionalColor;
Tank = tank;
Wheel = wheel;
}
}
}