diff --git a/ProjectWarmlyShip/ProjectWarmlyShip/FormShipConfig.cs b/ProjectWarmlyShip/ProjectWarmlyShip/FormShipConfig.cs index c8740da..ba4ae7d 100644 --- a/ProjectWarmlyShip/ProjectWarmlyShip/FormShipConfig.cs +++ b/ProjectWarmlyShip/ProjectWarmlyShip/FormShipConfig.cs @@ -6,7 +6,6 @@ namespace ProjectWarmlyShip; public partial class FormShipConfig : Form { private DrawningShip? _ship = null; - //что делать с пользовательским делегатом private event Action? ShipDelegate; public FormShipConfig() { diff --git a/ProjectWarmlyShip/ProjectWarmlyShip/ShipDelegate.cs b/ProjectWarmlyShip/ProjectWarmlyShip/ShipDelegate.cs deleted file mode 100644 index 42615da..0000000 --- a/ProjectWarmlyShip/ProjectWarmlyShip/ShipDelegate.cs +++ /dev/null @@ -1,6 +0,0 @@ -using ProjectWarmlyShip.Drawnings; - -namespace ProjectWarmlyShip; - -public delegate void ShipDelegate(DrawningShip ship); -