Added class hierarchies.

This commit is contained in:
Ilkka Seppala
2015-05-08 20:35:47 +03:00
parent 2029609def
commit 41b818771e
6 changed files with 78 additions and 0 deletions

View File

@ -0,0 +1,8 @@
package com.iluwatar;
public class Meteoroid extends GameObject {
public Meteoroid(int left, int top, int right, int bottom) {
super(left, top, right, bottom);
}
}