PIbd-21-MalafeevL.S._Cruiser_Base_Lab1 #1
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "lab1"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Зачтено с понижением балла(ов)
@ -0,0 +39,4 @@
/// <summary>
/// Цвет для палубы
/// </summary>
public Color PalubaColor { get; private set; }
Это свойства, относящиеся к сущности, тут их быть не должно
@ -0,0 +74,4 @@
{
if (width < _cruiserWidth || height < _cruiserHeight)
{
_pictureHeight = _cruiserHeight + 100;
Почему 100? Почему не 50?
@ -0,0 +97,4 @@
{
if (x < 0 || y < 0)
{
return;
Не выход, а корректировка
@ -0,0 +101,4 @@
}
if (x > _pictureWidth || y > _pictureHeight)
{
return;
Не выход, а корректировка
@ -0,0 +1,31 @@
private void Form1_Load(object sender, EventArgs e)
Что это такое???
Pull request closed