42 lines
1.1 KiB
C#
42 lines
1.1 KiB
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Net.NetworkInformation;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace Tank
|
||
{
|
||
public class EntityTank
|
||
{
|
||
/// <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 Color AdditionalColor { get; private set; }
|
||
public double Step => Speed * 100 / Weight;
|
||
|
||
public void Init(int speed, double weight, Color bodyColor, Color
|
||
additionalColor)
|
||
{
|
||
Speed = speed;
|
||
Weight = weight;
|
||
BodyColor = bodyColor;
|
||
AdditionalColor = additionalColor;
|
||
}
|
||
|
||
}
|
||
}
|