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.level; /*from ww w .j a va 2 s . c o m*/ import com.example.spacegunner.ioservice.PlayerHighscore; public interface LevelView { public void displayLevelAndPoints(final int level, final int points); public PlayerHighscore readHighscore(); public void startMainView(); public void startGameView(final int level, final int points); public void startGameResultView(int points); }