Aleikin A.M. LabWork02 #2

Merged
eegov merged 9 commits from LabWork02 into LabWork01 2022-10-28 09:12:52 +04:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit 550f65c1c2 - Show all commits

View File

@ -33,7 +33,7 @@ namespace AirBomber
}
public Bitmap MoveObject(Direction direction)
{
{
//TODO
if (true)
{

View File

@ -13,12 +13,12 @@ namespace AirBomber
protected override void DrawBarrierPart(Graphics g, int i, int j)
{
g.FillRectangle(barrierColor, i * _size_x, j * _size_y, i * (_size_x + 1), j * (_size_y + 1));
g.FillRectangle(barrierColor, i * _size_x, j * _size_y, 20, 20);
}
protected override void DrawRoadPart(Graphics g, int i, int j)
{
g.FillRectangle(roadColor, i * _size_x, j * _size_y, i * (_size_x + 1), j * (_size_y + 1));
g.FillRectangle(roadColor, i * _size_x, j * _size_y, 20, 20);
}
protected override void GenerateMap()