LPIGameManager.java
上传用户:gyyuli
上传日期:2013-07-09
资源大小:3050k
文件大小:1k
源码类别:

J2ME

开发平台:

Java

  1. /**
  2.  * <p>Title: lipeng</p>
  3.  * <p>Description:
  4.  * You cannot remove this copyright and notice.
  5.  * You cannot use this file without the express permission of the author.
  6.  * All Rights Reserved</p>
  7.  * <p>Copyright: lizhenpeng (c) 2004</p>
  8.  * <p>Company: LP&P</p>
  9.  * @author lizhenpeng
  10.  * @version 1.1.0
  11.  * <p>
  12.  * Revise History
  13.  * 2004.07.22 add an interface to demo mode V1.1.0
  14.  * </p>
  15.  */
  16. package lipeng;
  17. public interface LPIGameManager
  18. {
  19.   public void menuBeginNewGame();
  20.   public void menuLoadGame();
  21.   public void menuAudio();
  22.   public void menuAbout();
  23.   public void menuExitGame();
  24. }