лаб - 4

This commit is contained in:
Daniya_Youdakova 2022-12-15 22:42:22 +04:00
parent b0b97b53e0
commit 75fa75b3eb
2 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,6 @@ namespace AircraftCarrier
int yNumOfCells;
int xObjOffset;
int yObjOffset;
switch (direction)
{
case Direction.Up:
@ -149,6 +148,7 @@ namespace AircraftCarrier
}
break;
}
if (roadIsClear)
{
_drawningObject.MoveObject(direction);

View File

@ -35,7 +35,6 @@ namespace AircraftCarrier
// <summary>
/// Ширина отрисовки самолета
/// </summary>
protected readonly int _aircraftcarrierWidth = 230;
protected readonly int _aircraftcarrierHeight = 80;
public DrawningAircraftCarrier(int speed, float weight, Color bodyColor)
@ -53,6 +52,7 @@ namespace AircraftCarrier
{
_startPosX = x;
_startPosY = y;
_pictureWidth = width;
_pictureHeigth = height;
}