PIbd-12_Bugrov_D.A._Simple LabWork03 #3

Closed
BoiledMilk wants to merge 3 commits from LabWork03 into LabWork02
Showing only changes of commit 3dd21881b4 - Show all commits

View File

@ -29,7 +29,7 @@ public class LocomotiveDepot : AbstractCompany
{
for (int j = 0; j < count_height + 1; ++j)
{
g.DrawLine(pen, i * _placeSizeWidth + 10, j * _placeSizeHeight, i * _placeSizeWidth + _placeSizeWidth - 50, j * _placeSizeHeight);
g.DrawLine(pen, i * _placeSizeWidth + 10, j * _placeSizeHeight + 1, i * _placeSizeWidth + _placeSizeWidth - 50, j * _placeSizeHeight+1);
g.DrawLine(pen, i * _placeSizeWidth + 10, j * _placeSizeHeight, i * _placeSizeWidth + 10, j * _placeSizeHeight + _placeSizeHeight);
}
}