Исправление
This commit is contained in:
parent
ce21b5e68f
commit
2906c0ea79
@ -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
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user