25 lines
674 B
C#
25 lines
674 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Drawing;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace ElectricLocomotive
|
|||
|
{
|
|||
|
public class EntityLocomotiv
|
|||
|
{
|
|||
|
public int Speed { get; private set; }
|
|||
|
public double Weight { get; private set; }
|
|||
|
public double Step => (double)Speed * 100 / Weight;
|
|||
|
public readonly Color ColorBody = Color.Black;
|
|||
|
public readonly Color ColorWindow = Color.Blue;
|
|||
|
public readonly Color ColorFillBody = Color.White;
|
|||
|
public void Init(int speed,double weight)
|
|||
|
{
|
|||
|
Speed = speed;
|
|||
|
Weight = weight;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|