update forgotten dummyobj

This commit is contained in:
yugecin 2016-09-27 19:56:02 +02:00
parent 6b81ce2d2c
commit 857118accb

View File

@ -26,7 +26,7 @@ import org.newdawn.slick.Graphics;
/**
* Dummy hit object, used when another GameObject class cannot be created.
*/
public class DummyObject implements GameObject {
public class DummyObject extends GameObject {
/** The associated HitObject. */
private HitObject hitObject;
@ -67,4 +67,20 @@ public class DummyObject implements GameObject {
@Override
public void reset() {}
@Override
public boolean isCircle() {
return false;
}
@Override
public boolean isSlider() {
return false;
}
@Override
public boolean isSpinner() {
return false;
}
}