Back to project page NotATop.
The source code is released under:
GNU General Public License
If you think the Android project NotATop 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.gg.game; //w w w . j a va2 s. c o m import javax.microedition.khronos.opengles.GL10; import android.view.MotionEvent; /* ??????????????????????????????? */ abstract public class GameFrame { public final static int PREPARE = 0; public final static int RUN = 1; public final static int PAUSE = 2; public final static int END = 3; abstract public void init();// ??????????? abstract public void start();// ????????????????????? abstract public void pause();// ???????????????? abstract public void resume();// ?????????????????? abstract public void end();// ??????????????? abstract public void save();// ??????????????????? abstract public void load();// ???????????????????? abstract public void onTouch(MotionEvent e);// ?????????? abstract public void logic();// ????????????????????????? abstract public void draw(GL10 gl);// ????OpenGL??? }