ISEbd-22 Alimova M.S. Lab Work 02 Hard #2

Closed
malimova wants to merge 9 commits from Lab2 into Lab1
Showing only changes of commit 52dd126a68 - Show all commits

View File

@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AirBomber
{
internal interface IDrawningEngines
{
public void SetAmount(int a);
public void DrawEngines(Graphics g, int _startPosX, int _startPosY);
}
}