28 lines
689 B
C#
28 lines
689 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ContainerShip.Entities
|
|
{
|
|
public class EntityShip
|
|
{
|
|
public int Speed { get; private set; }
|
|
public double Weight { get; private set; }
|
|
public Color BodyColor { get; private set; }
|
|
public double Step => (double)Speed * 100 / Weight;
|
|
public EntityShip(int speed, double weight, Color bodyColor)
|
|
{
|
|
Speed = speed;
|
|
Weight = weight;
|
|
BodyColor = bodyColor;
|
|
}
|
|
|
|
public void ChangeBodyColor(Color color)
|
|
{
|
|
BodyColor = color;
|
|
}
|
|
}
|
|
}
|