Back to project page Replica-Jump.
The source code is released under:
GNU General Public License
If you think the Android project Replica-Jump 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.vinicius.dsl.replicajump.util; /*from ww w . j av a2 s. c o m*/ import org.andengine.entity.scene.Scene; public interface BasicScene { abstract Scene LoadScene(); abstract void CleanScene(); abstract void BackPress(); abstract void OnPause(); abstract void OnResume(); }