9 lines
170 B
Java
9 lines
170 B
Java
|
package com.iluwatar;
|
||
|
|
||
|
public class Meteoroid extends GameObject {
|
||
|
|
||
|
public Meteoroid(int left, int top, int right, int bottom) {
|
||
|
super(left, top, right, bottom);
|
||
|
}
|
||
|
}
|