Back to project page Marble-Run.
The source code is released under:
Apache License
If you think the Android project Marble-Run listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package nttu.edu.alt; /* w w w . j ava 2s . com*/ import nttu.edu.entity.Entity; import nttu.edu.level.Stage; import android.graphics.Canvas; public class NewHole extends Entity implements Obstacle { @Override public void tick(Stage s) { } @Override public void render(Canvas c, float centerX, float centerY) { } @Override public void reset() { } public boolean check(Obstacle obstacle) { return false; } public void respond(Obstacle obstacle) { } }