From 27079e1d11cbb3868af45b11c66900dbdf7e84a5 Mon Sep 17 00:00:00 2001 From: kirkorovka <147087189+kirkorovka@users.noreply.github.com> Date: Tue, 7 May 2024 09:34:30 +0400 Subject: [PATCH] cleaning --- .../Drawings/DrawingSAU.cs | 2 -- .../Project_SelfPropelledArtilleryUnit/FormSAUConfig.cs | 5 ++++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Project_SelfPropelledArtilleryUnit/Project_SelfPropelledArtilleryUnit/Drawings/DrawingSAU.cs b/Project_SelfPropelledArtilleryUnit/Project_SelfPropelledArtilleryUnit/Drawings/DrawingSAU.cs index c28ee5f..daf417b 100644 --- a/Project_SelfPropelledArtilleryUnit/Project_SelfPropelledArtilleryUnit/Drawings/DrawingSAU.cs +++ b/Project_SelfPropelledArtilleryUnit/Project_SelfPropelledArtilleryUnit/Drawings/DrawingSAU.cs @@ -29,8 +29,6 @@ public class DrawingSAU : DrawingBase Brush additionalBrush = new SolidBrush(SAU.AdditionalColor); - //гусеницы - //g.FillEllipse(additionalBrush, _startPosX.Value, _startPosY.Value + 55, 130, 40); //пулеметы diff --git a/Project_SelfPropelledArtilleryUnit/Project_SelfPropelledArtilleryUnit/FormSAUConfig.cs b/Project_SelfPropelledArtilleryUnit/Project_SelfPropelledArtilleryUnit/FormSAUConfig.cs index eef3ee4..1baade2 100644 --- a/Project_SelfPropelledArtilleryUnit/Project_SelfPropelledArtilleryUnit/FormSAUConfig.cs +++ b/Project_SelfPropelledArtilleryUnit/Project_SelfPropelledArtilleryUnit/FormSAUConfig.cs @@ -15,7 +15,7 @@ namespace Project_SelfPropelledArtilleryUnit; public partial class FormSAUConfig : Form { private DrawingBase? _drawingBase; - //нужно заменить на то как это реализовано у вики + private event Action? SauDelegate; public FormSAUConfig() { @@ -132,4 +132,7 @@ public partial class FormSAUConfig : Form Close(); } } + + + }