Back to project page CoreGame.
The source code is released under:
Copyright (c) 2011 Andrey Moiseev, http://o2genum.ru Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"),...
If you think the Android project CoreGame 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 ru.o2genum.coregame.game; //w ww .j av a2 s .c o m import android.view.*; import android.graphics.*; import ru.o2genum.coregame.framework.*; import ru.o2genum.coregame.framework.impl.*; public class GameActivity extends AndroidGame { @Override public Screen getStartScreen() { return new GameScreen(this); } }