Чистка пустых строк

This commit is contained in:
grishazagidulin 2024-03-04 13:13:28 +04:00
parent fea88d309c
commit 5189f14b0e
12 changed files with 12 additions and 18 deletions

View File

@ -13,7 +13,7 @@ public class DrawningBattleship : DrawningShip
/// Конструктор /// Конструктор
/// </summary> /// </summary>
/// <param name="entityBattleship">объект класса-сущности</param> /// <param name="entityBattleship">объект класса-сущности</param>
public DrawningBattleship(EntityBattleship entityBattleship) public DrawningBattleship(EntityBattleship entityBattleship) : base(143, 75)
{ {
EntityShip = entityBattleship; EntityShip = entityBattleship;
} }

View File

@ -4,7 +4,6 @@ using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace Battleship.Drawnings; namespace Battleship.Drawnings;
public class DrawningShip public class DrawningShip
{ {
@ -146,4 +145,3 @@ public class DrawningShip
#endregion #endregion
} }
} }

View File

@ -4,7 +4,6 @@ using System.Linq;
using System.Net.Sockets; using System.Net.Sockets;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace Battleship.Entities; namespace Battleship.Entities;
/// <summary> /// <summary>
/// Класс-сущность "Корабль" /// Класс-сущность "Корабль"
@ -27,4 +26,3 @@ public class EntityShip
BodyColor = bodycolor; BodyColor = bodycolor;
} }
} }

View File

@ -3,7 +3,6 @@ using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace Battleship.MovementStrategy; namespace Battleship.MovementStrategy;
/// <summary> /// <summary>
/// Параметры-координаты объекта /// Параметры-координаты объекта

View File

@ -3,7 +3,6 @@ using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace Battleship.MovementStrategy; namespace Battleship.MovementStrategy;
/// <summary> /// <summary>
/// Статус выполнения операции пермещения /// Статус выполнения операции пермещения