Форматирование кода

This commit is contained in:
malimova 2023-10-07 10:59:50 +04:00
parent 379eabc701
commit c8cd888bf1
5 changed files with 14 additions and 15 deletions

View File

@ -23,7 +23,6 @@ namespace AirBomber
/// <param name="height">Высота картинки</param>
public DrawningAirBomber(int speed, double weight, Color bodyColor, Color
additionalColor, bool bombs, Color bombsColor, bool fuelTanks, int width, int height) :
base(speed, weight, bodyColor, width, height, 160, 118)
{
if (EntityAirPlane != null)
@ -53,7 +52,6 @@ namespace AirBomber
g.DrawRectangle(pen, _startPosX + 63, _startPosY + 34, 20, 15);
g.FillRectangle(additionalBrush, _startPosX + 63, _startPosY + 70, 20, 15);
g.DrawRectangle(pen, _startPosX + 63, _startPosY + 70, 20, 15);
}
}
}

View File

@ -49,6 +49,10 @@ namespace AirBomber
width, int height)
{
// TODO: Продумать проверки
if (width < _airPlaneWidth || height < _airPlaneHeight)
{
return;
}
_pictureWidth = width;
_pictureHeight = height;
EntityAirPlane = new EntityAirPlane(speed, weight, bodyColor);

View File

@ -37,6 +37,5 @@ namespace AirBomber
Weight = weight;
BodyColor = bodyColor;
}
}
}

View File

@ -15,7 +15,6 @@ namespace AirBomber
return objParams.RightBorder >= FieldWidth - GetStep() && objParams.DownBorder >= FieldHeight - GetStep();
}
protected override void MoveToTarget()
{
var objParams = GetObjectParameters;

View File

@ -7,7 +7,6 @@ namespace AirBomber
/// </summary>
[STAThread]
static void Main()
{
// To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration.