Back to project page DolphinOES.
The source code is released under:
Apache License
If you think the Android project DolphinOES 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.sidereal.dolphinoes.backend; //from w w w . ja v a2 s . com import com.sidereal.dolphinoes.architecture.DolphinOES; import com.sidereal.dolphinoes.architecture.GameScene; import com.sidereal.dolphinoes.architecture.core.DolphinOESConfiguration; public abstract class GameTester { public GameScene nextScene; public DolphinOESConfiguration dconfig; public GameTester() { create(); } public abstract void create(); public abstract DolphinOES getGame(); }