19 lines
480 B
Java
19 lines
480 B
Java
|
package Classes;
|
||
|
|
||
|
import java.awt.*;
|
||
|
|
||
|
public class EntityMilitaryAircraft extends EntityAircraft
|
||
|
{
|
||
|
public Color ExtraColor;
|
||
|
public boolean Rockets;
|
||
|
public boolean ExtraWings;
|
||
|
|
||
|
public EntityMilitaryAircraft(int speed, float weight, Color bodyColor, Color extraColor, boolean rockets, boolean extraWings)
|
||
|
{
|
||
|
super(speed,weight,bodyColor);
|
||
|
this.ExtraColor = extraColor;
|
||
|
this.Rockets = rockets;
|
||
|
this.ExtraWings = extraWings;
|
||
|
}
|
||
|
}
|