diff --git a/AirBomber/AirBomber/IDrawningObject.cs b/AirBomber/AirBomber/IDrawningObject.cs index 02ba166..22f6bc9 100644 --- a/AirBomber/AirBomber/IDrawningObject.cs +++ b/AirBomber/AirBomber/IDrawningObject.cs @@ -14,7 +14,7 @@ namespace AirBomber void MoveObject(Direction direction); - void DrawningObject(Graphics g); + void DrawningObject(Graphics g); (float Left, float Right, float Top, float Bottom) GetCurrentPosition(); } diff --git a/AirBomber/AirBomber/SimpleMap.cs b/AirBomber/AirBomber/SimpleMap.cs index fb904d0..347fcdb 100644 --- a/AirBomber/AirBomber/SimpleMap.cs +++ b/AirBomber/AirBomber/SimpleMap.cs @@ -34,7 +34,7 @@ namespace AirBomber _map[i, j] = _freeRoad; } } - while (counter < 250) + while (counter < 50) { int x = _random.Next(0, 100); int y = _random.Next(0, 100);