From f4320eecc162d67ea4701e05948a2fa13cd46ea5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D1=80=D1=82=D0=B5=D0=BC=20=D0=A5=D0=B0=D1=80=D0=BB?= =?UTF-8?q?=D0=B0=D0=BC=D0=BE=D0=B2?= Date: Tue, 20 Dec 2022 01:04:08 +0400 Subject: [PATCH] =?UTF-8?q?=D0=A1=D0=BE=D0=B7=D0=B4=D0=B0=D0=BD=D0=B8?= =?UTF-8?q?=D0=B5=20=D0=BF=D1=80=D0=BE=D0=B4=D0=B2=D0=B8=D0=BD=D1=83=D1=82?= =?UTF-8?q?=D0=BE=D0=B3=D0=BE=20=D0=BE=D0=B1=D1=8A=D0=B5=D0=BA=D1=82=D0=B0?= =?UTF-8?q?.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- EntityMilitaryStormtrooper.java | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 EntityMilitaryStormtrooper.java diff --git a/EntityMilitaryStormtrooper.java b/EntityMilitaryStormtrooper.java new file mode 100644 index 0000000..09668a6 --- /dev/null +++ b/EntityMilitaryStormtrooper.java @@ -0,0 +1,14 @@ +import java.awt.*; + +public class EntityMilitaryStormtrooper extends EntityStormtrooper { + public final boolean bomb; + public final boolean propeller; + public final Color dopColor; + + public EntityMilitaryStormtrooper(int speed, float weight, Color bodyColor, Color DopColor, boolean Bomb, boolean Propeller) { + super(speed, weight, bodyColor); + dopColor = DopColor; + bomb = Bomb; + propeller = Propeller; + } +} \ No newline at end of file