From 11ee21a1eb0f661440667267fbaf93f46fd7c265 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9D=D0=B8=D0=BA=D0=B8=D1=82=D0=B0=20=D0=91=D0=B5=D0=BB?= =?UTF-8?q?=D1=8F=D0=BD=D0=B8=D0=BD?= Date: Sun, 12 Nov 2023 15:57:01 +0400 Subject: [PATCH] =?UTF-8?q?=D0=93=D0=BE=D1=82=D0=BE=D0=B2=D0=B0=D1=8F=20?= =?UTF-8?q?=D0=BB=D0=B0=D0=B1=D0=BE=D1=80=D0=B0=D1=82=D0=BE=D1=80=D0=BD?= =?UTF-8?q?=D0=B0=D1=8F=20=D1=80=D0=B0=D0=B1=D0=BE=D1=82=D0=B0=203?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Tank/src/DrawingArmoVehicle.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Tank/src/DrawingArmoVehicle.java b/Tank/src/DrawingArmoVehicle.java index 96b27d0..454adc1 100644 --- a/Tank/src/DrawingArmoVehicle.java +++ b/Tank/src/DrawingArmoVehicle.java @@ -52,10 +52,10 @@ public class DrawingArmoVehicle { _startPosY = Math.min(y, _pictureHeight - _TankHeight); } - public int GetPosX (){ return _startPosX; } - public int GetPosY (){ return _startPosY; } - public int GetWidth (){ return _TankWidth; } - public int GetHeight (){ return _TankHeight; } + public int GetPosX () { return _startPosX; } + public int GetPosY () { return _startPosY; } + public int GetWidth () { return _TankWidth; } + public int GetHeight () { return _TankHeight; } public boolean CanMove(Direction direction) { if (ArmoVehicle == null) {