Back to project page TreeFrogEngine.
The source code is released under:
MIT License
If you think the Android project TreeFrogEngine 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.discretesoftworks.TestGame; /* www .j a v a 2s .c o m*/ import android.os.Bundle; import com.discretesoftworks.OUYAframework.OuyaGame; public class TestGame extends OuyaGame{ public TestGame(){ super("2cf4c0c1-1c40-46ac-82fe-deda647f6544"); } @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setController(new TestController()); } }