BackSprite.java
上传用户:public
上传日期:2010-01-27
资源大小:484k
文件大小:0k
源码类别:

其他游戏

开发平台:

Java

  1. package Draw;
  2. import javax.microedition.lcdui.*;
  3. import javax.microedition.lcdui.game.*;
  4. import GameDisplay.*;
  5. public class BackSprite extends Sprite {
  6. private boolean show=false;
  7. public BackSprite(Image img,int w,int h) {
  8.     super(img,w,h);
  9.   }
  10. public void Move(){
  11.    if(!Control.game.isPause)
  12.    this.nextFrame();
  13. }
  14.   public void setShow(boolean show)
  15.   {
  16.     this.show = show;
  17.   }
  18.   public boolean isShow() {
  19.     return show;
  20.   }
  21. }