Kharlamov A.A. Lab Work 02 Hard #2

Closed
Kharlamov wants to merge 4 commits from Lab02 into Lab01
Showing only changes of commit f4320eecc1 - Show all commits

View File

@ -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;
}
}