PIbd-21 Belianin N.N. LabWork05 #5

Closed
Belnik wants to merge 7 commits from LabWork05 into LabWork04
2 changed files with 1 additions and 2 deletions
Showing only changes of commit 7668db2e11 - Show all commits

View File

@ -56,7 +56,6 @@ namespace Tank
Direction.Right => _startPosX + _Width + Tank.Step < _pictureWidth,
Direction.Down => _startPosY + _Height + Tank.Step < _pictureHeight,
_ => false
};
}

View File

@ -10,7 +10,7 @@ namespace Tank
{
public int Speed { get; private set; }
public double Weight { get; private set; }
public Color BodyColor { get; set; }
public Color BodyColor { get; private set; }
public void setBodyColor(Color color) { BodyColor = color; }
public double Step => (double)Speed * 100 / Weight;
public EntityArmoVehicle(int speed, double weight, Color bodyColor)