38 lines
1.0 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace ProjectTank.Entities
{
public class EntityTank2
{
/// <summary>
/// скорость
/// </summary>
public int Speed { get; private set; }
/// <summary>
/// вес
/// </summary>
public double Weight { get; private set; }
/// <summary>
/// основный цвет
/// </summary>
public Color BodyColor { get; private set; }
/// <summary>
/// шаг
/// </summary>
public double Step => Speed * 100 / Weight;
/// <summary>
/// Конструктор сущности
/// </summary>
/// <param name="speed"> Скорость </param>
/// <param name="weight">Вес </param>
/// <param name="bodyColor">Основной цвет </param>
public EntityTank2(int speed, double weight, Color bodyColor)
{
Speed = speed;
Weight = weight;
BodyColor = bodyColor;
}
}
}