38 lines
1.0 KiB
C#
38 lines
1.0 KiB
C#
|
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;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|