From e71ced4b545227b45d60829820eb44730600a784 Mon Sep 17 00:00:00 2001 From: 1yuee Date: Tue, 27 Sep 2022 16:09:20 +0400 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D0=B8=D0=B5=20=D0=B4=D0=BE=D0=BF.=20=D0=B7=D0=B0=D0=B4?= =?UTF-8?q?=D0=B0=D0=BD=D0=B8=D1=8F=20.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AirFighter/IDrawingObject.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/AirFighter/IDrawingObject.cs b/AirFighter/IDrawingObject.cs index c6a9e72..63d7e8f 100644 --- a/AirFighter/IDrawingObject.cs +++ b/AirFighter/IDrawingObject.cs @@ -15,7 +15,9 @@ namespace AirFighter void DrawingObject(Graphics g); - (float Left, float Right, float Top, float Bottom) GetCurrentPosition(); + void DoSomething(); + + (float Left, float Top, float Right, float Bottom) GetCurrentPosition(); } }