9 lines
170 B
Java
Raw Normal View History

2015-05-08 20:35:47 +03:00
package com.iluwatar;
public class Meteoroid extends GameObject {
public Meteoroid(int left, int top, int right, int bottom) {
super(left, top, right, bottom);
}
}