Lisov N.A. Lab_work2 #2

Merged
eegov merged 11 commits from LabWork02 into LabWork01 2022-09-30 09:43:17 +04:00
Showing only changes of commit 23dfac6957 - Show all commits

View File

@ -17,7 +17,7 @@ namespace AirFighter
public float Step => _aircraft.Plane?.Step ?? 0;
public (float Left, float Right, float Top, float Bottom) GetCurrentPosition()
public (float Left, float Top, float Right, float Bottom) GetCurrentPosition()
{
return _aircraft?.GetCurrentPosition() ?? default;
}
@ -37,6 +37,12 @@ namespace AirFighter
_aircraft.DrawTransport(g);
}
public void DoSomething()
Review

Дополнительное задание в итоговый код не включается

Дополнительное задание в итоговый код не включается
{
Random rnd = new Random();
int x = rnd.Next(0, 10);
}
}
}