Лишние пробелы убраны.

This commit is contained in:
Павел Сорокин 2022-11-03 14:32:17 +04:00
parent cc7aadb10d
commit f4343ce125
2 changed files with 0 additions and 2 deletions

View File

@ -13,7 +13,6 @@ namespace Liner
{
Ship = new EntityLiner(speed, weight, bodyColor, dopColor, dopDeck, pool);
}
public override void DrawTransport(Graphics g)
{
if (Ship is not EntityLiner liner)

View File

@ -25,7 +25,6 @@ namespace Liner
_ShipWidth = shipWidth;
_ShipHeight = shipHeight;
}
public void SetPosition(int x, int y, int width, int height)
{
if (width <= _ShipWidth + x || height <= _ShipHeight + y || x<0 || y<0)