10 lines
200 B
Java
Raw Normal View History

2015-05-08 21:01:06 +03:00
package com.iluwatar;
public class FlamingAsteroid extends Meteoroid {
public FlamingAsteroid(int left, int top, int right, int bottom) {
super(left, top, right, bottom);
setOnFire(true);
}
}