14 lines
267 B
Java
Raw Normal View History

2015-05-08 20:35:47 +03:00
package com.iluwatar;
public abstract class GameObject extends Rectangle {
public GameObject(int left, int top, int right, int bottom) {
super(left, top, right, bottom);
}
@Override
public String toString() {
return this.getClass().getSimpleName();
}
}