LabWork_06 #12

Closed
maxnes3 wants to merge 10 commits from LabWork_06 into LabWork_05
Showing only changes of commit 2906c0ea79 - Show all commits

View File

@ -15,7 +15,7 @@ namespace WarmlyShip
DrawingWarmlyShip _warmlyShip = null;
private event ShipDelegate EventAddShip;
private Action<DrawingWarmlyShip> EventAddShip;
public FormShipConfig()
{
@ -41,11 +41,11 @@ namespace WarmlyShip
pictureBoxObject.Image = bmp;
}
public void AddEvent(ShipDelegate ev)
public void AddEvent(Action<DrawingWarmlyShip> ev)
{
if (EventAddShip == null)
{
EventAddShip = new ShipDelegate(ev);
EventAddShip = ev;
}
else
{