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; import com.sidereal.dolphinoes.architecture.DolphinOES; /*from w w w. j a v a 2s . com*/ public abstract class ConcreteGametester extends GameTester { @Override public DolphinOES getGame() { return new DolphinOES(nextScene, dconfig); } @Override public abstract void create(); }