Back to project page spacegunner.
The source code is released under:
MIT License
If you think the Android project spacegunner 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 com.example.spacegunner.game; /*from w w w . j a v a2 s . co m*/ public interface GamePresenter { public void startNextLevel(); public void run(); public void countDown(); public void refreshScreen(); public void backButtonPressed(); public void levelFinished(); public void gameOver(); public void shipDestroyed(); public void gamePaused(); }