Исправление

This commit is contained in:
Макс Бондаренко 2022-11-13 16:11:54 +04:00
parent ce21b5e68f
commit 2906c0ea79

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
{