14 lines
450 B
Java
14 lines
450 B
Java
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;
|
|
}
|
|
} |